import _default from "./utils/countries.mjs"; declare const Devices: { readonly MOBILE: "MOBILE"; readonly DESKTOP: "DESKTOP"; readonly TABLET: "TABLET"; }; type Device = typeof Devices[keyof typeof Devices]; declare const SearchTypes: { readonly WEB: "web"; readonly IMAGE: "image"; readonly VIDEO: "video"; readonly NEWS: "news"; readonly DISCOVER: "discover"; readonly GOOGLE_NEWS: "googleNews"; }; type SearchType = typeof SearchTypes[keyof typeof SearchTypes]; declare const Countries: { [K in (typeof _default)[number]["alpha-3"]]: Lowercase; }; type Country = typeof Countries[keyof typeof Countries]; export { Countries, Country, Device, Devices, SearchType, SearchTypes };