import { default as React } from 'react';
export interface ToastProps {
    message: string;
    type?: 'success' | 'error' | 'warning' | 'info';
    iconName?: string;
    show: boolean;
    onClose: () => void;
    position?: 'top-left' | 'top-right' | 'bottom-left' | 'bottom-right';
    standalone?: boolean;
}
export declare const Toast: React.FC<ToastProps>;
