import type { MalloyElement } from './malloy-element'; import type { QueryPropertyInterface } from './query-property-interface'; export type QueryProperty = MalloyElement & QueryPropertyInterface; export declare function isQueryProperty(q: MalloyElement): q is QueryProperty;