import type { CompanyDatasetRequest, CompanyDatasetResponse } from '../companyDataSet/companyDataset.types';
import type { TinVerificationRequest, TinVerificationResponse } from '../tinVerification/tinVerification.types';
import type { CountryCode } from '../../types/datasets/country-code';
export type CompanySelectionRequest = CompanyDatasetRequest & TinVerificationRequest & {
    country: CountryCode;
    registrationNumber: string;
};
export type CompanySelectionResponse = CompanyDatasetResponse & {
    tinMatched?: TinVerificationResponse['matched'];
    registrationNumberMatched?: boolean;
};
