import { AnimationProps } from '../Animation'; import { PrismaneWithInternal, PrismanePositions, PrismaneProps } from '../../types'; import { DialogHeaderProps } from "./DialogHeader"; import { DialogFooterProps } from "./DialogFooter"; export { type DialogHeaderProps, type DialogFooterProps }; export type DialogProps = PrismaneProps<{ position?: PrismanePositions; open?: boolean; closable?: boolean; onClose?: () => void; }, AnimationProps>; declare const Dialog: PrismaneWithInternal; export default Dialog; //# sourceMappingURL=Dialog.d.ts.map