import { InputValue, TdInputProps } from './../type'; export declare function getOutputValue(val: InputValue, type: TdInputProps['type']): InputValue; export interface ExtendsTdInputProps extends TdInputProps { showInput: boolean; keepWrapperWidth: boolean; } export declare function useInput(props: ExtendsTdInputProps, expose: (exposed: Record) => void): { isHover: import("vue").Ref; focused: import("vue").Ref; renderType: import("vue").Ref<"number" | "search" | "hidden" | "submit" | "text" | "url" | "tel" | "password">; showClear: import("vue").ComputedRef; inputRef: import("vue").Ref; clearIconRef: any; inputValue: import("vue").Ref; isComposition: import("vue").Ref; compositionValue: import("vue").Ref; limitNumber: import("vue").ComputedRef; tStatus: import("vue").ComputedRef<"error" | "" | "default" | "success" | "warning">; emitFocus: (e: FocusEvent) => void; formatAndEmitBlur: (e: FocusEvent) => void; onHandleCompositionend: (e: CompositionEvent) => void; onHandleCompositionstart: (e: CompositionEvent) => void; onRootClick: (e: MouseEvent) => void; emitPassword: () => void; handleInput: (e: InputEvent) => void; emitClear: ({ e }: { e: MouseEvent; }) => void; onClearIconMousedown: (e: MouseEvent) => void; innerValue: import("vue").Ref; };