import type { ComputedRef, Ref, StyleValue } from 'vue'; import type { ComponentSize } from 'element-plus/es/constants'; import type { InputTagProps } from '../input-tag'; interface UseInputTagDomOptions { props: InputTagProps; isFocused: Ref; hovering: Ref; disabled: ComputedRef; inputValue: Ref; size: ComputedRef; validateState: ComputedRef; validateIcon: ComputedRef; needStatusIcon: ComputedRef; } export declare function useInputTagDom({ props, isFocused, hovering, disabled, inputValue, size, validateState, validateIcon, needStatusIcon, }: UseInputTagDomOptions): { ns: { namespace: ComputedRef; b: (blockSuffix?: string) => string; e: (element?: string) => string; m: (modifier?: string) => string; be: (blockSuffix?: string, element?: string) => string; em: (element?: string, modifier?: string) => string; bm: (blockSuffix?: string, modifier?: string) => string; bem: (blockSuffix?: string, element?: string, modifier?: string) => string; is: { (name: string, state: boolean | undefined): string; (name: string): string; }; cssVar: (object: Record) => Record; cssVarName: (name: string) => string; cssVarBlock: (object: Record) => Record; cssVarBlockName: (name: string) => string; }; nsInput: { namespace: ComputedRef; b: (blockSuffix?: string) => string; e: (element?: string) => string; m: (modifier?: string) => string; be: (blockSuffix?: string, element?: string) => string; em: (element?: string, modifier?: string) => string; bm: (blockSuffix?: string, modifier?: string) => string; bem: (blockSuffix?: string, element?: string, modifier?: string) => string; is: { (name: string, state: boolean | undefined): string; (name: string): string; }; cssVar: (object: Record) => Record; cssVarName: (name: string) => string; cssVarBlock: (object: Record) => Record; cssVarBlockName: (name: string) => string; }; containerKls: ComputedRef; containerStyle: ComputedRef; innerKls: ComputedRef; showClear: ComputedRef; showSuffix: ComputedRef; }; export {};