/** * examples: * - HomeAddress, 1 => Address * - HomeAddress, 2 => null * - PlaceExternalId, 1 => ExternalId * - PlaceExternalId, 2 => null * - TrainStationDockingGate, 2 => DockingGate * - TrainStationDockingGate, 3 => Gate * - TrainStationDockingGate, 4 => null */ export declare const getDomainObjectNameAfterDroppingSomeQualifiers: ({ domainObjectName, qualifiersToDrop, }: { domainObjectName: string; qualifiersToDrop: number; }) => string | null;