import { ClientSDK, RequestOptions } from "../lib/sdks.js"; import * as operations from "../models/operations/index.js"; export declare class IssuingTransactions extends ClientSDK { /** * List issued card authorizations associated with a Moov account. * * To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/) * you'll need to specify the `/accounts/{accountID}/issued-cards.read` scope. */ listAuthorizations(request: operations.ListIssuedCardAuthorizationsRequest, options?: RequestOptions): Promise; /** * Retrieves details of an authorization associated with a specific Moov account. * * To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/) * you'll need to specify the `/accounts/{accountID}/issued-cards.read` scope. */ getAuthorization(request: operations.GetIssuedCardAuthorizationRequest, options?: RequestOptions): Promise; /** * List card network and Moov platform events that affect the authorization and its hold on a wallet balance. * * To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/) * you'll need to specify the `/accounts/{accountID}/issued-cards.read` scope. */ listAuthorizationEvents(request: operations.ListIssuedCardAuthorizationEventsRequest, options?: RequestOptions): Promise; /** * List issued card transactions associated with a Moov account. * * To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/) * you'll need to specify the `/accounts/{accountID}/issued-cards.read` scope. */ list(request: operations.ListIssuedCardTransactionsRequest, options?: RequestOptions): Promise; /** * Retrieves details of an issued card transaction associated with a specific Moov account. * * To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/) * you'll need to specify the `/accounts/{accountID}/issued-cards.read` scope. */ get(request: operations.GetIssuedCardTransactionRequest, options?: RequestOptions): Promise; } //# sourceMappingURL=issuingtransactions.d.ts.map