import { BottomBarProps } from '../BottomBar'; import { AlertDialogCloseProps, AlertDialogContentProps, AlertDialogDescriptionProps, AlertDialogHeaderProps, AlertDialogProps, AlertDialogTitleProps, AlertDialogTriggerProps } from './types'; import * as React from "react"; declare const AlertDialog: { ({ dismissible, modal, repositionInputs, ...props }: AlertDialogProps): import("react/jsx-runtime").JSX.Element; displayName: string; }; declare const AlertDialogTrigger: React.ForwardRefExoticComponent>; declare const AlertDialogPortal: typeof import('vaul').Portal; declare const AlertDialogClose: React.ForwardRefExoticComponent>; declare const AlertDialogContent: React.ForwardRefExoticComponent>; declare const AlertDialogHeader: { ({ icon, children, ...props }: AlertDialogHeaderProps): import("react/jsx-runtime").JSX.Element; displayName: string; }; declare const AlertDialogFooter: { (props: BottomBarProps): import("react/jsx-runtime").JSX.Element; displayName: string; }; declare const AlertDialogTitle: React.ForwardRefExoticComponent>; declare const AlertDialogDescription: React.ForwardRefExoticComponent>; export { AlertDialog, AlertDialogPortal, AlertDialogTrigger, AlertDialogClose, AlertDialogContent, AlertDialogHeader, AlertDialogFooter, AlertDialogTitle, AlertDialogDescription, };