import type { Country } from '@farfetch/blackout-client'; /** * Locale utils. */ /** * Build a list with all continents and respective countries. * * @example * ``` * const continents = createContinentsList({ US: { continentId: 1 } }); * ``` * * @param countries - Object with a list of all countries by countryCode. * * @returns - List of continents with respective id and countries list. */ export declare const createContinentsList: (countries: Record) => { id: number; countries: Country[]; }[];