/// import { CardProps } from 'tamagui'; type Severity = 'default' | 'error' | 'info' | 'warning' | 'success'; export type LmAlertProps = CardProps & { severity?: Severity; text?: string; outlined?: boolean; hideIcon?: boolean; }; export declare function LmAlert({ severity, text, hideIcon, outlined, children, ...rest }: LmAlertProps): JSX.Element; export {}; //# sourceMappingURL=LmAlert.d.ts.map