import { IconComponent } from "../../../../utils/vue/icon.js"; import { ComponentSize } from "../../../../constants/size.js"; import { InputTagProps } from "../input-tag.js"; import * as _$vue from "vue"; import { ComputedRef, Ref, StyleValue } from "vue"; //#region ../../packages/components/input-tag/src/composables/use-input-tag-dom.d.ts interface UseInputTagDomOptions { props: InputTagProps; isFocused: Ref; hovering: Ref; disabled: ComputedRef; inputValue: Ref; size: ComputedRef; validateState: ComputedRef; validateIcon: ComputedRef<'' | IconComponent>; needStatusIcon: ComputedRef; } 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>; tagStyle: ComputedRef<{ maxWidth?: undefined; } | { maxWidth: string; }>; collapseItemRef: Ref; innerRef: Ref; }; //#endregion export { useInputTagDom };