/** * Input Component * @description 输入框组件导出 */ import Input from './src/input.vue'; export declare const YhInput: import("@yh-ui/utils").SFCWithInstall<{ new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins & Readonly<{ onClear?: (() => any) | undefined; onFocus?: ((event: FocusEvent) => any) | undefined; onBlur?: ((event: FocusEvent) => any) | undefined; onChange?: ((value: string | number) => any) | undefined; onCompositionend?: ((event: CompositionEvent) => any) | undefined; onCompositionstart?: ((event: CompositionEvent) => any) | undefined; onCompositionupdate?: ((event: CompositionEvent) => any) | undefined; onInput?: ((value: string | number) => any) | undefined; onKeydown?: ((event: KeyboardEvent) => any) | undefined; onKeyup?: ((event: KeyboardEvent) => any) | undefined; "onUpdate:modelValue"?: ((value: string | number) => any) | undefined; }>, { ref: HTMLInputElement | HTMLTextAreaElement | undefined; wrapperRef: HTMLElement | undefined; focus: () => void; blur: () => void; select: () => void; clear: () => void; textLength: number; }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & { clear: () => any; focus: (event: FocusEvent) => any; blur: (event: FocusEvent) => any; change: (value: string | number) => any; compositionend: (event: CompositionEvent) => any; compositionstart: (event: CompositionEvent) => any; compositionupdate: (event: CompositionEvent) => any; input: (value: string | number) => any; keydown: (event: KeyboardEvent) => any; keyup: (event: KeyboardEvent) => any; "update:modelValue": (value: string | number) => any; }, import("vue").PublicProps, { label: string; disabled: boolean; size: import("./src/input").InputSize; variant: import("./src/input").InputVariant; type: import("./src/input").InputType; loading: boolean; status: import("./src/input").InputStatus; autofocus: boolean; readonly: boolean; clearable: boolean; showWordLimit: boolean; rows: number; validateEvent: boolean; autocomplete: string; clearOnEscape: boolean; selectOnFocus: boolean; showPassword: boolean; ariaLabel: string; inputmode: "text" | "none" | "tel" | "url" | "email" | "numeric" | "decimal" | "search"; modelModifiers: Record; }, false, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, { P: {}; B: {}; D: {}; C: {}; M: {}; Defaults: {}; }, Readonly & Readonly<{ onClear?: (() => any) | undefined; onFocus?: ((event: FocusEvent) => any) | undefined; onBlur?: ((event: FocusEvent) => any) | undefined; onChange?: ((value: string | number) => any) | undefined; onCompositionend?: ((event: CompositionEvent) => any) | undefined; onCompositionstart?: ((event: CompositionEvent) => any) | undefined; onCompositionupdate?: ((event: CompositionEvent) => any) | undefined; onInput?: ((value: string | number) => any) | undefined; onKeydown?: ((event: KeyboardEvent) => any) | undefined; onKeyup?: ((event: KeyboardEvent) => any) | undefined; "onUpdate:modelValue"?: ((value: string | number) => any) | undefined; }>, { ref: HTMLInputElement | HTMLTextAreaElement | undefined; wrapperRef: HTMLElement | undefined; focus: () => void; blur: () => void; select: () => void; clear: () => void; textLength: number; }, {}, {}, {}, { label: string; disabled: boolean; size: import("./src/input").InputSize; variant: import("./src/input").InputVariant; type: import("./src/input").InputType; loading: boolean; status: import("./src/input").InputStatus; autofocus: boolean; readonly: boolean; clearable: boolean; showWordLimit: boolean; rows: number; validateEvent: boolean; autocomplete: string; clearOnEscape: boolean; selectOnFocus: boolean; showPassword: boolean; ariaLabel: string; inputmode: "text" | "none" | "tel" | "url" | "email" | "numeric" | "decimal" | "search"; modelModifiers: Record; }>; __isFragment?: never; __isTeleport?: never; __isSuspense?: never; } & import("vue").ComponentOptionsBase & Readonly<{ onClear?: (() => any) | undefined; onFocus?: ((event: FocusEvent) => any) | undefined; onBlur?: ((event: FocusEvent) => any) | undefined; onChange?: ((value: string | number) => any) | undefined; onCompositionend?: ((event: CompositionEvent) => any) | undefined; onCompositionstart?: ((event: CompositionEvent) => any) | undefined; onCompositionupdate?: ((event: CompositionEvent) => any) | undefined; onInput?: ((value: string | number) => any) | undefined; onKeydown?: ((event: KeyboardEvent) => any) | undefined; onKeyup?: ((event: KeyboardEvent) => any) | undefined; "onUpdate:modelValue"?: ((value: string | number) => any) | undefined; }>, { ref: HTMLInputElement | HTMLTextAreaElement | undefined; wrapperRef: HTMLElement | undefined; focus: () => void; blur: () => void; select: () => void; clear: () => void; textLength: number; }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & { clear: () => any; focus: (event: FocusEvent) => any; blur: (event: FocusEvent) => any; change: (value: string | number) => any; compositionend: (event: CompositionEvent) => any; compositionstart: (event: CompositionEvent) => any; compositionupdate: (event: CompositionEvent) => any; input: (value: string | number) => any; keydown: (event: KeyboardEvent) => any; keyup: (event: KeyboardEvent) => any; "update:modelValue": (value: string | number) => any; }, string, { label: string; disabled: boolean; size: import("./src/input").InputSize; variant: import("./src/input").InputVariant; type: import("./src/input").InputType; loading: boolean; status: import("./src/input").InputStatus; autofocus: boolean; readonly: boolean; clearable: boolean; showWordLimit: boolean; rows: number; validateEvent: boolean; autocomplete: string; clearOnEscape: boolean; selectOnFocus: boolean; showPassword: boolean; ariaLabel: string; inputmode: "text" | "none" | "tel" | "url" | "email" | "numeric" | "decimal" | "search"; modelModifiers: Record; }, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => { $slots: { prepend?: (props: {}) => any; } & { prefix?: (props: {}) => any; } & { loadingIcon?: (props: {}) => any; } & { clearIcon?: (props: {}) => any; } & { suffix?: (props: {}) => any; } & { append?: (props: {}) => any; }; })> & Record; export default YhInput; export * from './src/input'; export type InputInstance = InstanceType; export type YhInputInstance = InputInstance; export type YhInputProps = import('./src/input').InputProps; export type YhInputEmits = import('./src/input').InputEmits; export type YhInputSlots = import('./src/input').InputSlots; export type YhInputExpose = import('./src/input').InputExpose; export type YhInputType = import('./src/input').InputType; export type YhInputSize = import('./src/input').InputSize; export type YhInputVariant = import('./src/input').InputVariant; export type YhInputStatus = import('./src/input').InputStatus; export type YhInputCountConfig = import('./src/input').InputCountConfig;