import * as react_jsx_runtime from 'react/jsx-runtime'; import React__default from 'react'; interface AlertDialogHeaderProps extends React__default.HTMLAttributes { toggle?: () => void; hasClose?: boolean; } interface AlertDialogBodyProps extends React__default.HTMLAttributes { } interface AlertDialogFooterProps extends React__default.HTMLAttributes { } declare const AlertDialogComponent: React__default.ForwardRefExoticComponent, "open"> & { open?: boolean; toggle?: () => void; overlayStyles?: React__default.CSSProperties; } & React__default.RefAttributes> & { Header: ({ children, hasClose, toggle, className, ...props }: AlertDialogHeaderProps) => react_jsx_runtime.JSX.Element; Body: ({ children, className, ...props }: AlertDialogBodyProps) => react_jsx_runtime.JSX.Element; Footer: ({ children, className, ...props }: AlertDialogFooterProps) => react_jsx_runtime.JSX.Element; }; export { AlertDialogComponent as AlertDialog };