import { create } from './create'; import { createOnline } from './create-online'; import { createSquare } from './create-square'; import { getOne } from './get-one'; import { getSquareLocations } from './get-square-locations'; import { getVerificationLink } from './get-verification-link'; import { query } from './query'; import { remove } from './remove'; import { update } from './update'; import { updateOnline } from './update-online'; type ApiDeclaration = { update: typeof update; createOnline: typeof createOnline; getSquareLocations: typeof getSquareLocations; createSquare: typeof createSquare; getVerificationLink: typeof getVerificationLink; getOne: typeof getOne; create: typeof create; remove: typeof remove; query: typeof query; updateOnline: typeof updateOnline; }; export declare const cashboxesApiDeclaration: ApiDeclaration; export {};