import item from './queries/item'; import createItem from './mutations/createItem'; import updateItem from './mutations/updateItem'; import deleteItem from './mutations/deleteItem'; import createCounties from './mutations/createCounties'; import getGeoArea from './queries/getGeoArea'; import createGeoArea from './mutations/createGeoArea'; import queryGeoAreasByState from './queries/queryGeoAreasByState'; import queryCountiesByState from './queries/queryCountiesByState'; declare const _default: { Query: { item: typeof item; getGeoArea: typeof getGeoArea; queryGeoAreasByState: typeof queryGeoAreasByState; queryCountiesByState: typeof queryCountiesByState; }; Mutation: { createItem: typeof createItem; updateItem: typeof updateItem; deleteItem: typeof deleteItem; createGeoArea: typeof createGeoArea; createCounties: typeof createCounties; }; }; export default _default;