import { type FieldValue } from './control-form'; export type Field = { readonly value: FieldValue | undefined; readonly onChange: (value: FieldValue) => void; readonly disabled: boolean; /** Deterministic `accessibilityIdentifier` for this field: `
.`. */ readonly testID: string; }; export declare function useField(key: string): Field; //# sourceMappingURL=use-field.d.ts.map