export interface SoqlComment { type: 'line' | 'block'; text: string; start: number; end: number; } export declare function getComments(soql: string): SoqlComment[]; export declare function hasComments(soql: string): boolean; export declare function stripComments(soql: string): string;