import { StreamOptions, StreamTopic } from './interfaces';
import BxgatewayBase from './bxgatewayBase';
export declare class LightGateway extends BxgatewayBase {
    constructor(url: string, authKey: string);
    subscribe(topic: StreamTopic, options?: StreamOptions): void;
}
