import { AnyObject } from 'tn-typescript'; import { ExoContext } from '../../ExoContext/ExoContext'; import { ExoError } from '../../accessories/ExoErrors'; export declare class ExoConnStatus { pool: string; queue: null | number; created: number; gqlbody: AnyObject | null; exoroute: string[] | null; resperr: ExoError | null; ctx: ExoContext | null; stacked: boolean; $close: false | number; $exec: false | number; close(): void; exec(): void; get closed(): boolean; get running(): boolean; }