import type { FieldPath, FieldValues, FormStore, ResponseData } from '../types'; /** * Focuses the specified field of the form. * * @param form The form of the field. * @param name The name of the field. */ export declare function focus(form: FormStore, name: FieldPath): void;