import { APIResource } from "../../../core/resource.js"; import * as Shared from "../../shared.js"; import { APIPromise } from "../../../core/api-promise.js"; import { RequestOptions } from "../../../internal/request-options.js"; export declare class BaseValue extends APIResource { static readonly _key: readonly ['accounts', 'tokens', 'value']; /** * Roll the Account Owned API token secret. * * @example * ```ts * const tokenValue = * await client.accounts.tokens.value.update( * 'ed17574386854bf78a67040be0a770b0', * { * account_id: '023e105f4ecef8ad9ca31a8372d0c353', * body: {}, * }, * ); * ``` */ update(tokenID: string, params: ValueUpdateParams, options?: RequestOptions): APIPromise; } export declare class Value extends BaseValue { } export interface ValueUpdateParams { /** * Path param: Account identifier tag. */ account_id: string; /** * Body param */ body: unknown; } export declare namespace Value { export { type ValueUpdateParams as ValueUpdateParams }; } //# sourceMappingURL=value.d.ts.map