import type { ComputedRef, Ref } from 'vue'; type FormItemContext = any; export declare const useFormItem: () => FormItemContext; export interface IUseFormItemInputCommonProps { id?: string; label?: string | number | boolean | Record; } export declare const useFormItemInputId: (props: Partial, { formItemContext, disableIdGeneration, disableIdManagement }: { formItemContext?: FormItemContext; disableIdGeneration?: ComputedRef | Ref | undefined; disableIdManagement?: ComputedRef | Ref | undefined; }) => any; export {};