import { ClientSDK, RequestOptions } from "../lib/sdks.js"; import * as components from "../models/components/index.js"; import * as operations from "../models/operations/index.js"; export declare class Receipts extends ClientSDK { /** * Create receipts for transfers and scheduled transfers. * * To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/) * you'll need to specify the `/accounts/{accountID}/transfers.write` scope. */ create(request: Array, options?: RequestOptions): Promise; /** * List receipts by transferID, scheduleID, or occurrenceID. * * To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/) * you'll need to specify the `/accounts/{accountID}/transfers.read` scope. */ list(request: operations.ListReceiptsRequest, options?: RequestOptions): Promise; } //# sourceMappingURL=receipts.d.ts.map