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