export declare const Alert: { defaultProps: { status: string; variant: string; p: number; borderRadius: string; }; variants: { subtle: (props: Record) => { bg: any; iconColor: any; textColor: any; }; solid: (props: Record) => { borderWidth: number; borderColor: string; bg: any; iconColor: any; textColor: any; }; 'left-accent': (props: Record) => { borderWidth: number; bg: any; iconColor: any; textColor: any; borderColor: string; borderLeftColor: any; }; 'top-accent': (props: Record) => { borderWidth: number; borderColor: string; borderTopColor: any; bg: any; iconColor: any; textColor: any; }; outline: (props: Record) => { borderWidth: number; borderColor: any; iconColor: any; textColor: any; }; 'outline-light': (props: Record) => { borderWidth: number; borderColor: string; iconColor: any; textColor: any; }; }; }; export declare const AlertTitle: { defaultProps: { fontSize: string; fontWeight: string; }; }; export declare const AlertDescription: { defaultProps: { fontSize: string; fontWeight: string; }; };