import * as model from '../../../model/malloy_types'; import type { FieldSpace } from '../types/field-space'; import { ViewFieldDeclaration } from '../source-properties/view-field-declaration'; import type { QueryPropertyInterface } from '../types/query-property-interface'; import { LegalRefinementStage, QueryClass } from '../types/query-property-interface'; import type { QueryBuilder } from '../types/query-builder'; export declare class NestFieldDeclaration extends ViewFieldDeclaration implements QueryPropertyInterface { elementType: string; queryRefinementStage: LegalRefinementStage; forceQueryClass: QueryClass; turtleDef: model.TurtleDef | undefined; queryExecute(executeFor: QueryBuilder): void; getFieldDef(fs: FieldSpace): model.TurtleDef; }