import { authorizeMoloni } from './authorize-moloni'; import { connectInvoiceExpress } from './connect-invoicexpress'; import { get } from './get'; import { remove } from './remove'; import { retry } from './retry'; import { update } from './update'; type ApiDeclaration = { get: typeof get; update: typeof update; connectInvoiceExpress: typeof connectInvoiceExpress; authorizeMoloni: typeof authorizeMoloni; remove: typeof remove; retry: typeof retry; }; export declare const fiscalApiDeclaration: ApiDeclaration; export {};