import type { PipeSegment } from '../../../model/malloy_types'; import type { QueryOperationSpace } from '../field-space/query-spaces'; import { QOpDesc } from '../query-properties/qop-desc'; import type { SourceFieldSpace } from '../types/field-space'; import type { PipelineComp } from '../types/pipeline-comp'; import { View } from './view'; /** * A view operation consisting of literal view operations. * * e.g. `{ limit: 10 }` */ export declare class QOpDescView extends View { readonly operation: QOpDesc; elementType: string; constructor(operation: QOpDesc); pipelineComp(fs: SourceFieldSpace, isNestIn?: QueryOperationSpace): PipelineComp; private getOp; refine(inputFS: SourceFieldSpace, _pipeline: PipeSegment[], isNestIn: QueryOperationSpace | undefined): PipeSegment[]; getImplicitName(): string | undefined; }