import { IDataObject } from 'n8n-workflow'; import { IFieldMap, IQueryItem } from '../types'; export declare function escapeQueryValue(value: string): string; export declare function sanitizeQuery(query: string): string; export declare function buildFlattenedQuery(queryItems: IQueryItem[]): string; export declare function updateFieldMapFromFlattened(objectTypeId: string, queryFields: IDataObject, fieldMap: IFieldMap, logger: any): void;