import FunctionContext from "./functions/common/FunctionContext"; import { AsyncSequence } from "@wortise/sequency"; declare class JsonElementStreamer { private readonly context; private readonly transformed; private value?; private readonly _stream?; private constructor(); knownAsEmpty(): boolean | undefined; stream(skip?: number, limit?: number): AsyncSequence; static fromJsonArray(context: FunctionContext, value: any[], transformed: boolean): JsonElementStreamer; static fromTransformedStream(context: FunctionContext, stream: AsyncSequence): JsonElementStreamer; toJsonArray(): Promise; } export default JsonElementStreamer; //# sourceMappingURL=JsonElementStreamer.d.ts.map