import { SvelteComponentTyped } from "svelte";
import type { SvelteComponent } from 'svelte';
import type { Toast } from './toastStore';
declare const __propDef: {
    props: {
        toast: Toast;
        cancelIcon: typeof SvelteComponent;
    };
    events: {
        [evt: string]: CustomEvent<any>;
    };
    slots: {};
};
export declare type ToastProps = typeof __propDef.props;
export declare type ToastEvents = typeof __propDef.events;
export declare type ToastSlots = typeof __propDef.slots;
export default class Toast extends SvelteComponentTyped<ToastProps, ToastEvents, ToastSlots> {
}
export {};
