import { View } from 'react-native'; import { type ButtonProps } from '../Button'; import { Dialog, type DialogRootProps, type DialogPopupProps } from '../Dialog'; export interface AlertDialogRootProps extends DialogRootProps { } declare const AlertDialogRoot: import("react").ForwardRefExoticComponent>; export interface AlertDialogPopupProps extends DialogPopupProps { } declare const AlertDialogPopup: import("react").ForwardRefExoticComponent>; export interface AlertDialogActionProps extends Omit { readonly asChild?: boolean; } declare const AlertDialogAction: import("react").ForwardRefExoticComponent>; export interface AlertDialogCancelProps extends Omit { readonly asChild?: boolean; } declare const AlertDialogCancel: import("react").ForwardRefExoticComponent>; type AlertDialogCompoundComponent = typeof AlertDialogRoot & { Trigger: typeof Dialog.Trigger; Popup: typeof AlertDialogPopup; Header: typeof Dialog.Header; Title: typeof Dialog.Title; Description: typeof Dialog.Description; Content: typeof Dialog.Content; Text: typeof Dialog.Text; Footer: typeof Dialog.Footer; Close: typeof Dialog.Close; Action: typeof AlertDialogAction; Cancel: typeof AlertDialogCancel; }; export declare const AlertDialog: AlertDialogCompoundComponent; export {}; //# sourceMappingURL=index.d.ts.map