import type { Sampling } from '../../../model/malloy_types'; import { MalloyElement } from '../types/malloy-element'; import type { QueryPropertyInterface } from '../types/query-property-interface'; import { LegalRefinementStage, QueryClass } from '../types/query-property-interface'; export declare class SampleProperty extends MalloyElement implements QueryPropertyInterface { readonly sample: Sampling; elementType: string; queryRefinementStage: LegalRefinementStage; forceQueryClass: QueryClass; constructor(sample: Sampling); sampling(): Sampling; }