import type { LegalEntity } from '../../core/models/api/legal-entity'; import type { MappingRecord } from '../../utils/mapping/mappingRecord'; import type { GlobalEntrySchema } from './tasks/types'; /** * Schema-keyed mapping, for reading a legal entity into the form schema. */ export declare const globalEntryKeyMappingForOrgs: MappingRecord>; export declare const globalEntryKeyMappingForIndividuals: MappingRecord>; export declare const globalEntryKeyMappingForSoleProps: MappingRecord>; /** Api-keyed mapping, for building the legal entity request from the form schema */ export declare const globalEntryApiKeyMappingForOrgs: MappingRecord, GlobalEntrySchema>; /** Api-keyed mapping, for building the sole proprietorship request from the form schema */ export declare const globalEntryApiKeyMappingForSoleProps: MappingRecord, GlobalEntrySchema>; /** Api-keyed mapping, for building the legal entity request from the form schema */ export declare const globalEntryApiKeyMappingForIndividuals: MappingRecord, GlobalEntrySchema>;