import React from 'react'; export interface AlertDialogRootProps { children?: React.ReactNode; open?: boolean; onOpenChange?: (open: boolean) => void; defaultOpen?: boolean; /** container for createPortal * @default document.body */ container?: HTMLElement; } interface AlertDialogCtxProps { handleOpen: () => void; handleClose: () => void; open: boolean; contentId: string; } export interface AlertDialogRootMethods { close: () => void; open: () => void; forceClose: () => void; } declare const useAlertDialogCtx: (consumerName: string) => AlertDialogCtxProps; export { useAlertDialogCtx }; export declare const AlertDialogRoot: React.ForwardRefExoticComponent>; //# sourceMappingURL=alert-dialog-root.d.ts.map