import type { ComputedRef, Ref } from 'vue'; import type { FormItemContext } from '../types'; export declare const useFormItem: () => { form: import("../types").FormContext | undefined; formItem: FormItemContext | undefined; }; export type IUseFormItemInputCommonProps = { id?: string; label?: string | number | boolean | Record; ariaLabel?: string | number | boolean | Record; }; export declare const useFormItemInputId: (props: Partial, { formItemContext, disableIdGeneration, disableIdManagement, }: { formItemContext?: FormItemContext; disableIdGeneration?: ComputedRef | Ref; disableIdManagement?: ComputedRef | Ref; }) => { isLabeledByFormItem: ComputedRef; inputId: Ref; };