import { type ViewStyle, type ImageSourcePropType } from 'react-native'; import React from 'react'; declare const Toast: ({ message, visible, duration, speed, progress, bounce, autoDismiss, centerText, dismissGesture, icon, style, dismiss }: { message: string; visible: boolean; duration?: number | undefined; speed?: number | undefined; progress?: boolean | undefined; bounce?: boolean | undefined; autoDismiss?: boolean | undefined; centerText?: boolean | undefined; icon?: ImageSourcePropType | undefined; dismissGesture: any; style?: ViewStyle | undefined | ViewStyle[]; dismiss: () => void; }) => React.JSX.Element; export default Toast; //# sourceMappingURL=Toast.d.ts.map