import type { BaseInnerFormProps } from '../../core/hooks/useForm/types';
import type { CompanyTypesValue } from '../../core/models/api/company-types-value';
import type { CountryCode } from '../../core/models/country-code';
import type { defaultFieldConfig } from './fieldConfig';
export interface BusinessRegistrationNumberSchema {
    registrationNumber?: string;
    exemptedFromRegistrationNumber?: boolean;
}
export interface BusinessRegistrationNumberProps extends BaseInnerFormProps<BusinessRegistrationNumberSchema> {
    country: CountryCode;
    companyType?: CompanyTypesValue | 'trust';
    fieldConfig?: typeof defaultFieldConfig;
}
