import { APISessionInfo } from "../api"; import { Client } from "../Client"; import { BaseObject } from "./BaseObject"; export declare class AuthSession extends BaseObject { constructor(client: Client, data: APISessionInfo); get name(): string; get token(): string; setToken(token: string): this; }