/// /** * AlertDialog component is used to interrupt the user with a mandatory confirmation or action. * AlertDialog: provides context and state for the dialog. * AlertDialogHeader: should contain the title announced by screen readers. * AlertDialogBody: should contain the description announced by screen readers. * AlertDialogFooter: should contain the actions of the dialog. * AlertDialogOverlay: The dimmed overlay behind the dialog. * AlertDialogContent: The wrapper for the alert dialog's content. * AlertDialogCloseButton: The button that closes the dialog. * * AlertDialog requires that you provide the leastDestructiveRef prop. * Based on WAI-ARIA specifications, focus should be placed on the least destructive element when the dialog opens, to prevent users from accidentally confirming the destructive action. * * See docs: https://chakra-ui.com/docs/overlay/alert-dialog */ export declare function AlertDialog({ ...props }: any): JSX.Element; export declare function AlertDialogBody({ ...props }: any): JSX.Element; export declare function AlertDialogFooter({ ...props }: any): JSX.Element; export declare function AlertDialogHeader({ ...props }: any): JSX.Element; export declare function AlertDialogContent({ ...props }: any): JSX.Element; export declare function AlertDialogOverlay({ ...props }: any): JSX.Element; //# sourceMappingURL=AlertDialog.d.ts.map