import type { ComputedRef, Ref } from 'vue'; import type { FormItemContext } from '../types'; export declare const useFormItem: () => { form: any; formItem: any; }; 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: any; inputId: any; };