1 | import * as React from "react";
|
2 | import { BoxProps } from "../Box";
|
3 | import { IModal } from "../Modal";
|
4 | import { Omit } from "../common-types";
|
5 | import { CloseButtonProps } from "../CloseButton";
|
6 |
|
7 | interface IAlertDialog extends Omit<IModal, "initialFocusRef"> {
|
8 | leastDestructiveRef: React.RefObject<HTMLElement>;
|
9 | }
|
10 |
|
11 | export const AlertDialog: React.FC<IAlertDialog>;
|
12 | export const AlertDialogHeader: React.FC<BoxProps>;
|
13 | export const AlertDialogBody: React.FC<BoxProps>;
|
14 | export const AlertDialogContent: React.FC<BoxProps>;
|
15 | export const AlertDialogOverlay: React.FC<BoxProps>;
|
16 | export const AlertDialogFooter: React.FC<BoxProps>;
|
17 | export const AlertDialogCloseButton: React.FC<CloseButtonProps>;
|