import { Country } from '../../constans/country';

/** Options that used by {@link CountryChoseSelect} */
export interface CountryOption {
  value: Country;
  label: string;
}
