export declare type TypeOptions = 'info' | 'success' | 'warning' | 'error' | 'default'; export declare type Positons = 'top-left' | 'top-right' | 'top-center' | 'bottom-left' | 'bottom-right' | 'bottom-center'; export declare const POSITION: { TOP_LEFT: string; TOP_RIGHT: string; TOP_CENTER: string; BOTTOM_LEFT: string; BOTTOM_RIGHT: string; BOTTOM_CENTER: string; }; export declare const TYPE: { INFO: string; SUCCESS: string; WARNING: string; ERROR: string; DEFAULT: string; DARK: string; }; export declare const enum DEFAULT { COLLAPSE_DURATION = 300, CSS_NAMESPACE = "Toastify" }