/** * This file was auto-generated by Fern from our API Definition. */ import * as environments from "../../../../environments"; import * as core from "../../../../core"; import * as ElevenLabs from "../../.."; export declare namespace User { interface Options { environment?: core.Supplier; xiApiKey?: core.Supplier; } interface RequestOptions { timeoutInSeconds?: number; maxRetries?: number; } } export declare class User { protected readonly _options: User.Options; constructor(_options?: User.Options); /** * Gets extended information about the users subscription * @throws {@link ElevenLabs.UnprocessableEntityError} */ getSubscription(requestOptions?: User.RequestOptions): Promise; /** * Gets information about the user * @throws {@link ElevenLabs.UnprocessableEntityError} */ get(requestOptions?: User.RequestOptions): Promise; }