import type { AppliedProcessor } from './AppliedProcessor'; /** * @type ProcessedQuery: The result of query processing. * * @property query: The query string that was searched for. * - **Max Length:** 50 * * @property appliedProcessors: The processors that were executed for the search query and their results. * */ export type ProcessedQuery = { query?: string; appliedProcessors?: Array; } & { [key: string]: any; };