import type { ExtractPropTypes, PropType } from 'vue'; import type { NotificationPosition } from './types'; export declare const notificationProps: { position: { type: PropType; default: string; }; offset: { type: NumberConstructor; default: number; }; title: { type: StringConstructor; default: string; }; type: { type: PropType<"error" | "strong" | "success" | "warning" | "info">; default: string; }; message: { type: StringConstructor; default: undefined; }; duration: { type: NumberConstructor; default: number; }; showClose: { type: BooleanConstructor; default: boolean; }; onClose: { type: PropType<() => void>; default: () => void; }; renderToBody: { type: BooleanConstructor; default: boolean; }; }; export type NotificationProps = ExtractPropTypes;