export = WOQLStreamConfig; declare function WOQLStreamConfig(): void; declare class WOQLStreamConfig { type: string; create(client: any): WOQLStream; row(): any; template(template: any): any; mtemplate: any; prettyPrint(): string; loadJSON(config: any, rules: any): void; rules: WOQLStreamRule[]; json(): { stream: { template: any; }; rules: any[]; }; } import WOQLStream = require("./woqlStream"); declare function WOQLStreamRule(): void; declare class WOQLStreamRule { template(template: any): any; }