import { create } from "./create/index"; import { query } from "./query/index"; import { remove } from "./remove/index"; import { update } from "./update/index"; type ApiDeclaration = { create: typeof create; remove: typeof remove; update: typeof update; query: typeof query; }; declare const profilesApiDeclaration: ApiDeclaration; export { profilesApiDeclaration };