import { connect } from './connect'; import { get } from './get'; import { remove } from './remove'; import { retry } from './retry'; import { update } from './update'; type ApiDeclaration = { get: typeof get; connect: typeof connect; update: typeof update; remove: typeof remove; retry: typeof retry; }; export declare const invoiceExpressApiDeclaration: ApiDeclaration; export {};