import { FiltersCity, City } from "./types"; /** * Returns an array of cities that match the specified filter criteria. * @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. * @param filters.with_autonomy A boolean indicating if the result should include the autonomy associated with each city. * @param filters.with_province A boolean indicating if the result should include the province associated with each city. */ export declare const cities: (filters?: FiltersCity) => City[];