import * as DialogPrimitive from "@loke/ui/dialog"; import { type ComponentPropsWithoutRef, type FC } from "react"; declare const createAlertDialogScope: import("@loke/ui/context").CreateScope; type DialogProps = ComponentPropsWithoutRef; interface AlertDialogProps extends Omit { } declare const AlertDialog: FC; type DialogTriggerProps = ComponentPropsWithoutRef; interface AlertDialogTriggerProps extends DialogTriggerProps { } declare const AlertDialogTrigger: import("react").ForwardRefExoticComponent>; type DialogPortalProps = ComponentPropsWithoutRef; interface AlertDialogPortalProps extends DialogPortalProps { } declare const AlertDialogPortal: FC; type DialogOverlayProps = ComponentPropsWithoutRef; interface AlertDialogOverlayProps extends DialogOverlayProps { } declare const AlertDialogOverlay: import("react").ForwardRefExoticComponent>; type DialogContentProps = ComponentPropsWithoutRef; interface AlertDialogContentProps extends Omit { } declare const AlertDialogContent: import("react").ForwardRefExoticComponent>; type DialogTitleProps = ComponentPropsWithoutRef; interface AlertDialogTitleProps extends DialogTitleProps { } declare const AlertDialogTitle: import("react").ForwardRefExoticComponent>; type DialogDescriptionProps = ComponentPropsWithoutRef; interface AlertDialogDescriptionProps extends DialogDescriptionProps { } declare const AlertDialogDescription: import("react").ForwardRefExoticComponent>; type DialogCloseProps = ComponentPropsWithoutRef; interface AlertDialogActionProps extends DialogCloseProps { } declare const AlertDialogAction: import("react").ForwardRefExoticComponent>; interface AlertDialogCancelProps extends DialogCloseProps { } declare const AlertDialogCancel: import("react").ForwardRefExoticComponent>; declare const Root: FC; declare const Trigger: import("react").ForwardRefExoticComponent>; declare const Portal: FC; declare const Overlay: import("react").ForwardRefExoticComponent>; declare const Content: import("react").ForwardRefExoticComponent>; declare const Action: import("react").ForwardRefExoticComponent>; declare const Cancel: import("react").ForwardRefExoticComponent>; declare const Title: import("react").ForwardRefExoticComponent>; declare const Description: import("react").ForwardRefExoticComponent>; export { createAlertDialogScope, AlertDialog, AlertDialogTrigger, AlertDialogPortal, AlertDialogOverlay, AlertDialogContent, AlertDialogAction, AlertDialogCancel, AlertDialogTitle, AlertDialogDescription, Root, Trigger, Portal, Overlay, Content, Action, Cancel, Title, Description, }; export type { AlertDialogProps, AlertDialogTriggerProps, AlertDialogPortalProps, AlertDialogOverlayProps, AlertDialogContentProps, AlertDialogActionProps, AlertDialogCancelProps, AlertDialogTitleProps, AlertDialogDescriptionProps, };