import type { SQLPhraseSegment } from '../../../model/malloy_types'; import { MalloyElement } from '../types/malloy-element'; import { SourceQueryElement } from '../source-query-elements/source-query-element'; type SQLStringSegment = string | SourceQueryElement; export declare class SQLString extends MalloyElement { elementType: string; elements: SQLStringSegment[]; containsQueries: boolean; complete(): void; push(el: string | MalloyElement): void; sqlPhrases(): SQLPhraseSegment[]; } export {};