import type { SearchParameters } from "../types"; declare type SupportedKeys = "is" | "-is" | "not" | "-not" | "include" | "-include" | "exclude" | "-exclude"; export default function parseTags(params: SearchParameters, key: SupportedKeys, operator: string, value: string): void; export {};