import { CSSProperties } from 'react'; type ToastProps = { message: string; duration?: number; position?: 'bottom' | 'top'; style?: CSSProperties; contentStyle?: CSSProperties; }; export declare function Toast(props: ToastProps): void; export {};