type JsonValue = string | number | boolean | null | undefined | JsonValue[] | JsonRecord; interface JsonRecord { [key: string]: JsonValue; } export declare function filterJsonObject(obj: JsonRecord, lowerQuery: string): JsonRecord | null; export declare function filterJson(obj: JsonRecord, query: string): JsonRecord | null; export {};