import { APIResource } from "../../core/resource.js"; import * as AccountStatementsAPI from "../account-statements.js"; import { APIPromise } from "../../core/api-promise.js"; import { RequestOptions } from "../../internal/request-options.js"; export declare class AccountStatements extends APIResource { /** * Simulates an [Account Statement](#account-statements) being created for an * account. In production, Account Statements are generated once per month. * * @example * ```ts * const accountStatement = * await client.simulations.accountStatements.create({ * account_id: 'account_in71c4amph0vgo2qllky', * }); * ``` */ create(body: AccountStatementCreateParams, options?: RequestOptions): APIPromise; } export interface AccountStatementCreateParams { /** * The identifier of the Account the statement is for. */ account_id: string; } export declare namespace AccountStatements { export { type AccountStatementCreateParams as AccountStatementCreateParams }; } //# sourceMappingURL=account-statements.d.ts.map