import { SvelteComponentTyped } from "svelte";
import type { Toast } from './toastStore';
declare const __propDef: {
    props: {
        type?: Toast['type'];
    };
    events: {
        [evt: string]: CustomEvent<any>;
    };
    slots: {};
};
export declare type CancelProps = typeof __propDef.props;
export declare type CancelEvents = typeof __propDef.events;
export declare type CancelSlots = typeof __propDef.slots;
export default class Cancel extends SvelteComponentTyped<CancelProps, CancelEvents, CancelSlots> {
}
export {};
