import { FiltersProvinceBase, Province } from "../types/index.js"; /** * Returns the provinces that match the specified filter criteria. * * This module loads only provinces.json. It deliberately does not support * `with_autonomy` / `with_cities` - 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 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. */ export declare const provinces: (filters?: FiltersProvinceBase) => Province[];