import type { Airlines } from "./Airline"; import type { Countries } from "./Country"; import type { Continents } from "./Continents"; import type { BrandLanguage } from "./BrandLanguage"; export declare type Fetched = { airlines: Airlines; countries: Countries; continents: Continents; brandLanguage: BrandLanguage; }; export declare const fetchedDefault: Fetched;