import { City, FiltersCityBase } from "../types/index.js"; /** * Returns the cities that match the specified filter criteria. * * This module loads only cities.json. It deliberately does not support * `with_autonomy` / `with_province` - importing the relations would pull in the * other datasets. Import from the package root for the relational API. * * @param filters (optional) An object with filters. * @param filters.code A string or number representing the code of the city to filter by. * @param filters.code_autonomy A string or number representing the code of the autonomy to filter by. * @param filters.code_province A string or number representing the code of the province to filter by. * @param filters.name A string representing the name of the city to filter by. */ export declare const cities: (filters?: FiltersCityBase) => City[];