import { type VariantProps } from "class-variance-authority"; import type { LucideIcon } from "lucide-react-native"; import * as React from "react"; import { View, type ViewProps } from "react-native"; import { Text } from "./text"; declare const alertVariants: (props?: ({ variant?: "default" | "destructive" | null | undefined; } & import("class-variance-authority/types").ClassProp) | undefined) => string; declare function Alert({ className, variant, children, icon: Icon, iconSize, iconClassName, ...props }: ViewProps & VariantProps & { ref?: React.RefObject; icon: LucideIcon; iconSize?: number; iconClassName?: string; }): React.JSX.Element; declare function AlertTitle({ className, ...props }: React.ComponentProps): React.JSX.Element; declare function AlertDescription({ className, ...props }: React.ComponentProps): React.JSX.Element; export { Alert, AlertDescription, AlertTitle }; //# sourceMappingURL=alert.d.ts.map