import React from "react"; export interface Country { country: string; code: string; } export declare type CountryListLabels = Record<"assignButton" | "emptyList" | "title", React.ReactNode> & { noOfCountries: (countries: string) => React.ReactNode; }; export interface CountryListProps { countries: Country[]; disabled: boolean; labels: CountryListLabels; onCountryAssign: () => void; onCountryUnassign: (country: string) => void; } declare const CountryList: React.FC; export default CountryList;