import type HttpRequester from '../http-requester'; import type { ExportOptions, LiveQueryOptions, SelectOptions } from '../types'; import type { WriteStream } from 'node:fs'; export default class Segment { private readonly name?; private readonly collectionName; private readonly httpRequester; private readonly liveQuerySegment?; constructor(name: string | undefined, collectionName: string, httpRequester: HttpRequester, liveQuerySegment?: LiveQueryOptions); list(options?: SelectOptions): Promise; exportCsv(stream: WriteStream, options?: ExportOptions): Promise; private serializeQuery; } //# sourceMappingURL=segment.d.ts.map