import { APIResource } from "../resource.js"; import * as Core from "../core.js"; export declare class Credits extends APIResource { /** * Get the credits information for the api user */ get(options?: Core.RequestOptions): Core.APIPromise; } /** * The credits object */ export interface CreditGetResponse { /** * Available credits balance in USD cents */ credit_balance: number; } export declare namespace Credits { export { type CreditGetResponse as CreditGetResponse }; } //# sourceMappingURL=credits.d.ts.map