import { APIResource } from "../resource.js"; import * as Core from "../core.js"; export declare class Accounts extends APIResource { /** * Returns details about your account. */ retrieve(options?: Core.RequestOptions): Core.APIPromise; } export interface AccountRetrieveResponse { plan: AccountRetrieveResponse.Plan; usage: AccountRetrieveResponse.Usage; } export declare namespace AccountRetrieveResponse { interface Plan { /** * The maximum number of characters per billing period allowed by your plan. */ character_limit: number; commercial_use_allowed: boolean; /** * The type of plan you are subscribed to. */ type: string; } interface Usage { /** * The number of characters remaining in this billing period. */ characters: number; } } export declare namespace Accounts { export { type AccountRetrieveResponse as AccountRetrieveResponse }; } //# sourceMappingURL=accounts.d.ts.map