UNPKG

shadcn-react

Version:
13 lines (12 loc) 507 B
/// <reference types="react" /> import { AlertDialogActionProps, AlertDialogCancelProps } from '@radix-ui/react-alert-dialog'; export interface AlertDialogProps { title?: React.ReactNode; description?: React.ReactNode; okText?: React.ReactNode; okProps?: AlertDialogActionProps; cancelText?: React.ReactNode; cancelProps?: AlertDialogCancelProps; children: React.ReactNode; } export declare function AlertDialog(props: AlertDialogProps): import("react/jsx-runtime").JSX.Element;