import { list } from './list'; import { listCities } from './list-cities'; import { listImportCities } from './list-import-cities'; import { sync } from './sync'; import { syncCity } from './sync-city'; type ApiDeclaration = { list: typeof list; listCities: typeof listCities; listImportCities: typeof listImportCities; sync: typeof sync; syncCity: typeof syncCity; }; export declare const subwayStationsApiDeclaration: ApiDeclaration; export {};