CountriesModule: ModuleMutations<Country> & { count: ((query: CountryQuery) => Promise<number>); countryExists: ((params: { countryId: string }) => Promise<boolean>); findCountries: ((params: CountryQuery & { limit?: number; offset?: number; sort?: SortOption[] }, options?: FindOptions) => Promise<Country[]>); findCountry: ((params: { countryId?: string; isoCode?: string }) => Promise<Country>); flagEmoji: ((country: Country) => string); isBase: ((country: Country) => boolean); name: ((country: Country, language: string) => string) }