forked from pu428f3pz/InternshipProject
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
847 B
25 lines
847 B
import * as React from 'react';
|
|
import type { IDialogChildProps } from '..';
|
|
export declare type ContentProps = {
|
|
motionName: string;
|
|
ariaId: string;
|
|
onVisibleChanged: (visible: boolean) => void;
|
|
onMouseDown: React.MouseEventHandler;
|
|
onMouseUp: React.MouseEventHandler;
|
|
} & IDialogChildProps;
|
|
export declare type ContentRef = {
|
|
focus: () => void;
|
|
changeActive: (next: boolean) => void;
|
|
};
|
|
declare const Content: React.ForwardRefExoticComponent<{
|
|
motionName: string;
|
|
ariaId: string;
|
|
onVisibleChanged: (visible: boolean) => void;
|
|
onMouseDown: React.MouseEventHandler;
|
|
onMouseUp: React.MouseEventHandler;
|
|
} & {
|
|
getOpenCount: () => number;
|
|
scrollLocker?: import("rc-util/lib/Dom/scrollLocker").default;
|
|
} & import("../..").DialogProps & React.RefAttributes<ContentRef>>;
|
|
export default Content;
|