import type { BaseFormFieldProps } from '../../core/hooks/useForm/types';
import type { CountryCode } from '../../core/models/country-code';
export interface CountryOfGoverningLawFieldSchema {
    countryOfGoverningLaw?: CountryCode;
}
export interface CountryOfGoverningLawFieldProps extends BaseFormFieldProps<CountryOfGoverningLawFieldSchema> {
    allowedCountries?: readonly CountryCode[];
    country?: CountryCode;
}
