/** * Extracts properties and their values from a JSON path query. * @param {string} query - The JSON path query. * @returns {Record} An object containing the properties and their values. * @example * ```ts * const query = `?(@.culture == 'en-us' && @.segment == 'mySegment')`; * const props = extractJsonQueryProps(query); * console.log(props); // { culture: 'en-us', segment: 'mySegment' } * ``` */ export declare function extractJsonQueryProps(query: string): Record;