import { ApiMethodDeclaration } from "../../index"; import { Cashbox } from "../types"; type ParamsData = { data: Cashbox; }; type ResponseData = Cashbox; declare const create: ApiMethodDeclaration; export { create };