import { Client } from '../client.js'; import { CreateSessionOptions, CreateSessionResponse } from '../interfaces/sessions.js'; import 'axios'; import '../interfaces/config.js'; import '../types/index.js'; declare class Session { private client; private network; private config; constructor(client: Client, network: string, config: object); create(options: CreateSessionOptions): Promise; } export { Session };