import { ClientSDK, RequestOptions } from "../lib/sdks.js"; import * as operations from "../models/operations/index.js"; export declare class JournalEntries extends ClientSDK { /** * List Journal Entries * * @remarks * List Journal Entries */ list(request: operations.AccountingJournalEntriesAllRequest, options?: RequestOptions): Promise; /** * Create Journal Entry * * @remarks * Create Journal Entry */ create(request: operations.AccountingJournalEntriesAddRequest, options?: RequestOptions): Promise; /** * Get Journal Entry * * @remarks * Get Journal Entry */ get(request: operations.AccountingJournalEntriesOneRequest, options?: RequestOptions): Promise; /** * Update Journal Entry * * @remarks * Update Journal Entry */ update(request: operations.AccountingJournalEntriesUpdateRequest, options?: RequestOptions): Promise; /** * Delete Journal Entry * * @remarks * Delete Journal Entry */ delete(request: operations.AccountingJournalEntriesDeleteRequest, options?: RequestOptions): Promise; } //# sourceMappingURL=journalentries.d.ts.map