import type { ExistingLegalEntity } from '../../core/models/api/legal-entity';
export declare const getPrefilledDetails: (legalEntity: ExistingLegalEntity | undefined) => {
    transferInstrumentCount: number;
    entityAssociations: import("../../core/models/api/legal-entity-association").LegalEntityAssociationType[];
    organization: {
        dateOfIncorporation: boolean;
        financialReport: {
            annualTurnover: boolean;
            balanceSheetTotal: boolean;
            dateOfFinancialData: boolean;
            employeeCount: boolean;
        };
        registeredAddress: {
            city: boolean;
            postalCode: boolean;
            stateOrProvince: boolean;
            street: boolean;
        };
        registrationNumber: boolean;
        support: {
            email: boolean;
            phone: boolean;
        };
        taxInformation: boolean;
        type: boolean;
        vatNumber: boolean;
    } | undefined;
} | undefined;
