index.d.ts 295 Bytes
/// <reference types="react" />
import { IDialogPropTypes } from '../IDialogPropTypes';
export interface IDialogChildProps extends IDialogPropTypes {
    getOpenCount: () => number;
    switchScrollingEffect?: () => void;
}
export default function Dialog(props: IDialogChildProps): JSX.Element;