/**
 * UN world population estimates as of 1st January on each year. From World
 * Population Prospects 2022. Future estimates are based the medium fertility
 * variant.
 **/
interface Estimate {
    year: number;
    pop: number;
}
export declare const estimates: Estimate[];
export {};
