declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{ /** * Boolean binding to determine * if the notification is visible. * Gets reset after timeout. */ modelValue: boolean; /** [[color]] */ color?: string | undefined; /** * Sets the duration of the notification * in milliseconds. */ timeout?: number | undefined; }>, { color: string; timeout: number; }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { "update:modelValue": (event: boolean) => void; }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly, { color: string; timeout: number; }>>> & { "onUpdate:modelValue"?: ((event: boolean) => any) | undefined; }, { color: string; timeout: number; }>; export default _default; declare type __VLS_NonUndefinedable = T extends undefined ? never : T; declare type __VLS_TypePropsToRuntimeProps = { [K in keyof T]-?: {} extends Pick ? { type: import('vue').PropType<__VLS_NonUndefinedable>; } : { type: import('vue').PropType; required: true; }; }; declare type __VLS_WithDefaults = { [K in keyof P]: K extends keyof D ? P[K] & { default: D[K]; } : P[K]; };