import { get } from "./get/index"; import { update } from "./update/index"; type ApiDeclaration = { get: typeof get; update: typeof update; }; declare const agbApiDeclaration: ApiDeclaration; export { agbApiDeclaration };