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