import { FiltersProvince, Province } from "./types"; /** * Returns an array of provinces 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 province to filter by. * @param filters.code_autonomy A string or number representing the code of the autonomy to filter by. * @param filters.name A string representing the name of the province to filter by. * @param filters.with_autonomy A boolean indicating if the result should include the autonomy associated with each province. * @param filters.with_cities A boolean indicating if the result should include cities associated with each province. */ export declare const provinces: (filters?: FiltersProvince) => Province[];