declare type Id = number | string;
export declare type VariantColor = 'success' | 'error' | 'warning' | 'info' | 'primary' | 'dark' | 'publish';
export declare type Position = 'top-right' | 'top-center' | 'top-left' | 'bottom-right' | 'bottom-center' | 'bottom-left';
declare type ToastOptions = {
    title: string;
    description?: string;
    variantColor: VariantColor;
    id?: Id;
    isClosable?: boolean;
    position?: Position;
    duration?: number;
};
export declare type ShowToast = (options: ToastOptions) => Promise<Id>;
export {};
