import type { MalloyElement } from './malloy-element'; import type { Query } from '../../../model/malloy_types'; import type { QueryComp } from './query-comp'; export interface QueryElement extends MalloyElement { queryComp(isRefOk: boolean): QueryComp; query(): Query; } export declare function isQueryElement(e: MalloyElement): e is QueryElement;