import type { VmType, VmIcon, HandleMouse } from '..'; import type { DefineComponent, PropType, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, ExtractPropTypes } from 'vue'; import type { Install, BasicType } from '../_utils'; import Alert from "./src/alert"; export declare const VAlert: Install, VmType | null>; readonly fontSize: BasicType, string | number | null>; readonly titleSize: BasicType, string | number | null>; readonly bold: BasicType; readonly center: BasicType; readonly close: BasicType; readonly simple: BasicType; readonly title: BasicType, string | null>; readonly round: BasicType; readonly background: BasicType, string | null>; readonly color: BasicType, string | null>; readonly titleColor: BasicType, string | null>; readonly fixed: BasicType; readonly closeIcon: BasicType, null>; readonly beforeIcon: BasicType, null>; readonly alertList: BasicType, string[] | null>; readonly duration: BasicType; readonly onClose: BasicType, null>; }, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly, VmType | null>; readonly fontSize: BasicType, string | number | null>; readonly titleSize: BasicType, string | number | null>; readonly bold: BasicType; readonly center: BasicType; readonly close: BasicType; readonly simple: BasicType; readonly title: BasicType, string | null>; readonly round: BasicType; readonly background: BasicType, string | null>; readonly color: BasicType, string | null>; readonly titleColor: BasicType, string | null>; readonly fixed: BasicType; readonly closeIcon: BasicType, null>; readonly beforeIcon: BasicType, null>; readonly alertList: BasicType, string[] | null>; readonly duration: BasicType; readonly onClose: BasicType, null>; }>>, { readonly type: VmType; readonly fontSize: string | number; readonly titleSize: string | number; readonly bold: boolean; readonly center: boolean; readonly close: boolean; readonly simple: boolean; readonly title: string; readonly round: boolean; readonly background: string; readonly color: string; readonly titleColor: string; readonly fixed: boolean; readonly closeIcon: VmIcon; readonly beforeIcon: VmIcon; readonly alertList: string[]; readonly duration: number; readonly onClose: HandleMouse; }>>; /** alert 组件实例类型 */ export type AlertInstance = InstanceType; export * from './src/interface'; export default VAlert;