import { GetAcceptEnum } from "../funcs/statementsGet.js"; import { ClientSDK, RequestOptions } from "../lib/sdks.js"; import * as operations from "../models/operations/index.js"; export { GetAcceptEnum } from "../funcs/statementsGet.js"; export declare class Statements extends ClientSDK { /** * Retrieve all statements associated with an 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}/profile.read` scope. */ list(request: operations.ListStatementsRequest, options?: RequestOptions): Promise; /** * Retrieve a statement by its ID. * * Use the `Accept` header to specify the format of the response. Supported formats are `application/json` and `application/pdf`. * * To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/) * you'll need to specify the `/accounts/{accountID}/profile.read` scope. */ get(request: operations.GetStatementRequest, options?: RequestOptions & { acceptHeaderOverride?: GetAcceptEnum; }): Promise; } //# sourceMappingURL=statements.d.ts.map