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