export type ToastType = 'warning' | 'info' | 'success' | 'error';
export declare class ToastData {
    text: string;
    type: ToastType;
}
export declare enum ToastSize {
    small = "small",
    large = "large"
}
export interface ToastConfig {
    autoWidth?: boolean;
    fixedSize?: ToastSize;
    showCloseButton?: boolean;
    timeout: number;
}
export declare const DEFAULT_TOAST_CONFIG: ToastConfig;
