type Props = { anchor: HTMLElement | null | undefined; message?: string; onDismiss: () => void; primaryAction?: { accessibilityLabel?: string; text?: string; onClick?: (arg1: { event: React.MouseEvent | React.MouseEvent | React.KeyboardEvent | React.KeyboardEvent; }) => void; }; secondaryAction?: { accessibilityLabel?: string; text?: string; onClick?: (arg1: { event: React.MouseEvent | React.MouseEvent | React.KeyboardEvent | React.KeyboardEvent; }) => void; }; subtext?: string; }; export default function ConfirmationPopover({ anchor, message, subtext, primaryAction, secondaryAction, onDismiss, }: Props): import("react/jsx-runtime").JSX.Element; export {};