interface UseFormValueOptions {
    defaultValue?: any;
}
export default function useFormValue(name?: string, options?: UseFormValueOptions): {
    readonly value: any;
    setValue: (value: any) => void;
    getValue: () => any;
};
export {};
