import type { PropType } from 'vue'; import { NotyType } from './types'; type URL = string; export interface LinkProp { text: string; to?: URL; onClick?: () => void; } export type Link = URL | LinkProp | false; export declare const notyProps: { title: { type: StringConstructor; default: string; }; content: { type: StringConstructor; }; showClose: { type: BooleanConstructor; default: boolean; }; icon: { type: StringConstructor; default: string; }; type: { type: PropType; default: string; }; link: { type: PropType; default: boolean; }; dangerouslyUseHTMLString: { type: BooleanConstructor; default: boolean; }; }; export {};