import type { Country } from './Country'; export declare class CountryCollection { constructor(countries: Country[]); where(property: string, operator: string | any, value?: any): Country[]; }