import { D as DefaultRuleGroupType, b as DefaultRuleGroupTypeIC } from './basic-6e8613a6.js';
import { e as ParseCELOptions } from './importExport-e051698c.js';

/**
 * Converts a CEL string expression into a query suitable for
 * the QueryBuilder component's `query` or `defaultQuery` props.
 */
declare function parseCEL(cel: string): DefaultRuleGroupType;
declare function parseCEL(cel: string, options: Omit<ParseCELOptions, 'independentCombinators'> & {
    independentCombinators?: false;
}): DefaultRuleGroupType;
declare function parseCEL(cel: string, options: Omit<ParseCELOptions, 'independentCombinators'> & {
    independentCombinators: true;
}): DefaultRuleGroupTypeIC;

export { parseCEL };
