import { FlexProps } from "../Flex"; import { TextProps } from "../Text"; type MessageVariant = "default" | "info" | "success" | "alert" | "warning" | "error" | "dark"; export interface MessageProps { bodyTextStyle?: TextProps; containerStyle?: FlexProps; IconComponent?: React.FC; iconPosition?: "left" | "right" | "bottom"; onClose?: () => void; showCloseButton?: boolean; testID?: string; text?: string; title?: string; titleStyle?: TextProps; variant?: MessageVariant; } export declare const Message: React.FC>; export {};