import type { JSONSchema7, JSONSchema7Definition } from 'json-schema'; interface OptionsSchema { [key: string]: JSONSchema7; } interface KV { [key: string]: any; } export declare const pickFieldFromJSONSchema: (optionsSchema: OptionsSchema | JSONSchema7Definition, fieldName?: string) => KV; export {};