/** * Taken from the latest DQL release in the artifactory * Exported only for testing purposes. */ export declare const dqlCommands: string[]; export declare const sortedDqlCommands: string[]; /** * Matches a parameter name in DQL, which is defined as a word followed by a colon. * For example, in `scanLimitGb: 1`, `scanLimitGb` would be matched as a parameter name. * It does not include the colon in the match, so only the parameter name is highlighted. */ export declare const parameterNamePattern: RegExp; /** * Matches boolean literals in DQL, which are `true`, `false`, `TRUE`, and `FALSE`. * The word boundaries ensure that we only match standalone boolean literals, and not parts * of other words (e.g., it won't match the 'true' in 'trueValue'). */ export declare const booleanLiteralPattern: RegExp; export declare const combinedDurationUnits: string[]; /** * Regex pattern to match an optional duration or calendar unit suffix in DQL numeric literals. */ export declare const dqlUnitSuffixPattern: string;