/// import { Style, TailwindFn } from 'twrnc/dist/esm/types'; declare type Props = { tw: TailwindFn; style?: Style; iconStyle?: Style; textStyle?: Style; children: string; show: boolean; duration?: number; showCallback?: (value: boolean) => void; timeout?: number; icon?: string; type?: 'success' | 'warning' | 'error'; iconSize?: number; }; declare const ToastMessage: ({ tw, style, iconStyle, textStyle, children, show, duration, showCallback, timeout, icon, type, iconSize, }: Props) => JSX.Element; export default ToastMessage;