import type { OrganizationType } from '../../core/models/api/organization-type';
import type { Currency } from '../../types/datasets/currency';
import type { components } from './companyDataset.contract';
export type CompanyDatasetRequest = components['schemas']['ProviderAgnosticCompanyDataSetRequest'];
export type CompanyDatasetResponse = Omit<components['schemas']['ProviderAgnosticCompanyDataSetResponse'], 'companyType' | 'currency'> & {
    companyType: OrganizationType | null;
    currency?: Currency;
};
export type CompanyDatasetResponseAddress = components['schemas']['ProviderAgnosticAddress'];
