import React from "react"; import { type AlertRootProps } from "heroui-native"; export interface NAlertProps extends AlertRootProps { title?: string; description?: string; /** Alias of `description`, as the React package names it. */ message?: string; onClose?: () => void; titleClassName?: string; descriptionClassName?: string; } export declare const NAlert: React.NamedExoticComponent; //# sourceMappingURL=NAlert.d.ts.map