declare const alertStyles: { information: { backgroundColor: string; color: string; secondaryColor: string; secondaryTextColor: string; icon: string; }; success: { backgroundColor: string; color: string; secondaryColor: string; secondaryTextColor: string; icon: string; }; warning: { backgroundColor: string; color: string; secondaryColor: string; secondaryTextColor: string; icon: string; }; error: { backgroundColor: string; color: string; secondaryColor: string; secondaryTextColor: string; icon: string; }; }; type AlertType = "information" | "success" | "warning" | "error"; interface AlertProps { message: string; label?: string; description?: string; icon?: boolean; inline?: boolean; suppressed?: boolean; type?: AlertType; onPrimaryPress?: () => void; onSecondaryPress?: () => void; } export { alertStyles, AlertProps };