import { IListener } from './api'; import { Connection } from "./connection/Connection"; import { QueueOptions } from "@leftshiftone/gaia-sdk/dist"; export declare class Gaia { private readonly listener; constructor(listener?: IListener); /** * Connect the client to AIOS. * * @param options the ID of the identity */ connect(options: QueueOptions): Promise; }