import type { AlertTypes } from './alert'; export interface IAlertComponentProps { message: string | JSX.Element; subMessage?: string | JSX.Element; icon?: JSX.Element; data?: { subTitle?: string | JSX.Element; labelButton?: string; closeToast?: () => void; onPressButton?: () => void; }; type?: AlertTypes; onPress?: () => void; } export declare const AlertTop: ({ message, subMessage, icon, type, data, onPress, }: IAlertComponentProps) => JSX.Element;