import { getAllActual } from './get-all-actual'; import { getHistory } from './get-history'; import { getOne } from './get-one'; import { update } from './update'; type ApiDeclaration = { getOne: typeof getOne; getHistory: typeof getHistory; update: typeof update; getAllActual: typeof getAllActual; }; export declare const slotTemplatesApiDeclaration: ApiDeclaration; export {};