import { TdToastProps } from './type';
import { PropType } from 'vue';
declare const _default: {
    direction: {
        type: PropType<"column" | "row">;
        default: "column" | "row";
        validator(val: TdToastProps['direction']): boolean;
    };
    duration: {
        type: NumberConstructor;
        default: number;
    };
    icon: {
        type: PropType<string | ((h: typeof import("vue").h) => import("..").SlotReturnValue)>;
    };
    message: {
        type: PropType<string | ((h: typeof import("vue").h) => import("..").SlotReturnValue)>;
    };
    overlayProps: {
        type: PropType<import("../overlay/type").TdOverlayProps>;
        default: () => {};
    };
    placement: {
        type: PropType<"top" | "middle" | "bottom">;
        default: "top" | "middle" | "bottom";
        validator(val: TdToastProps['placement']): boolean;
    };
    preventScrollThrough: BooleanConstructor;
    showOverlay: BooleanConstructor;
    theme: {
        type: PropType<"loading" | "error" | "warning" | "success">;
        validator(val: TdToastProps['theme']): boolean;
    };
    onClose: PropType<() => void>;
    onDestroy: PropType<() => void>;
};
export default _default;
