import * as React from 'react'; import { IDialogChildProps } from '.'; export interface ContentProps extends IDialogChildProps { motionName: string; ariaId: string; onVisibleChanged: (visible: boolean) => void; onClick: React.MouseEventHandler; } export interface ContentRef { focus: () => void; getDOM: () => HTMLDivElement; changeActive: (next: boolean) => void; } declare const Content: React.ForwardRefExoticComponent>; export default Content;