export declare type DialogProps = { /** Label on the open call-to-action */ openLabel: string; /** Label on the close call-to-action */ closeLabel: string; /** Title text for the dialog panel. */ title: string; /** Details text to dialog. */ details: string; /** Handler for the open event. */ onOpen?: () => void; /** Handler for the close event. */ onClose?: () => void; }; /** A fully-managed, renderless dialog component jam-packed with accessibility and keyboard features, perfect for building completely custom modal and dialog windows for your next application. */ export declare const Dialog: ({ openLabel, closeLabel, title, details, onOpen, onClose, }: DialogProps) => JSX.Element;