import { TdToastProps } from './type'; import { PropType } from 'vue'; declare const _default: { direction: { type: PropType; default: TdToastProps['direction']; validator(val: TdToastProps['direction']): boolean; }; duration: { type: NumberConstructor; default: number; }; icon: { type: PropType; }; message: { type: PropType; }; overlayProps: { type: PropType; default: () => {}; }; placement: { type: PropType; default: TdToastProps['placement']; validator(val: TdToastProps['placement']): boolean; }; preventScrollThrough: BooleanConstructor; showOverlay: BooleanConstructor; theme: { type: PropType; validator(val: TdToastProps['theme']): boolean; }; onClose: PropType; onDestroy: PropType; }; export default _default;