import { create } from './create'; import { getAll } from './get-all'; import { getForOrderService } from './get-for-order-service'; import { getOne } from './get-one'; import { getTemplate } from './get-template'; import { remove } from './remove'; import { resetAcceptances } from './reset-acceptances'; import { update } from './update'; type ApiDeclaration = { remove: typeof remove; create: typeof create; getAll: typeof getAll; getOne: typeof getOne; getForOrderService: typeof getForOrderService; getTemplate: typeof getTemplate; update: typeof update; resetAcceptances: typeof resetAcceptances; }; export declare const agbApiDeclaration: ApiDeclaration; export {};