import { VNode } from 'vue'; import { ContentProps } from './content'; export interface NoticeInstance { show: (options: ContentProps) => () => void; clean: () => void; destroy: () => void; } export declare const createInstance: (type: string, context?: VNode) => NoticeInstance;