import { type FC } from 'react'; import { type SelectDesktopProps } from '@alfalab/core-components-select/cssm/desktop'; import { type Country } from '@alfalab/utils'; type CountriesSelectProps = Pick & { selected?: string; countries: Country[]; fieldWidth: number | null; }; export declare const CountriesSelect: FC; export {};