import { create } from "./create/index"; import { getInfo } from "./get-info/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; getInfo: typeof getInfo; }; declare const widgetsApiDeclaration: ApiDeclaration; export { widgetsApiDeclaration };