import type { TextDecoration } from './src/interface'; import type { VmType } from '..'; import type { DefineComponent, PropType, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, ExtractPropTypes } from 'vue'; import type { Install, BasicType } from '../_utils'; import Text from "./src/text"; export declare const VText: Install, VmType | null>; readonly size: BasicType, string | number | null>; readonly color: BasicType, string | null>; readonly background: BasicType, string | null>; readonly block: BasicType; readonly spacing: BasicType, string | number | null>; readonly lineHeight: BasicType, string | number | null>; readonly indent: BasicType, string | number | null>; readonly bold: BasicType; readonly decoration: BasicType, TextDecoration | null>; readonly padding: BasicType, string | number | null>; readonly width: BasicType, string | number | null>; readonly ellipsis: BasicType; readonly center: BasicType; }, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly, VmType | null>; readonly size: BasicType, string | number | null>; readonly color: BasicType, string | null>; readonly background: BasicType, string | null>; readonly block: BasicType; readonly spacing: BasicType, string | number | null>; readonly lineHeight: BasicType, string | number | null>; readonly indent: BasicType, string | number | null>; readonly bold: BasicType; readonly decoration: BasicType, TextDecoration | null>; readonly padding: BasicType, string | number | null>; readonly width: BasicType, string | number | null>; readonly ellipsis: BasicType; readonly center: BasicType; }>>, { readonly type: VmType; readonly bold: boolean; readonly center: boolean; readonly background: string; readonly color: string; readonly width: string | number; readonly padding: string | number; readonly size: string | number; readonly block: boolean; readonly spacing: string | number; readonly lineHeight: string | number; readonly indent: string | number; readonly decoration: TextDecoration; readonly ellipsis: boolean; }>>; /** text 组件实例类型 */ export type TextInstance = InstanceType; export * from './src/interface'; export default VText;