/// import { IDialogPropTypes } from '../IDialogPropTypes'; export interface IDialogChildProps extends IDialogPropTypes { getOpenCount: () => number; switchScrollingEffect?: () => void; } export default function Dialog(props: IDialogChildProps): JSX.Element;