import type { QueryObject, ParsedPageId } from '../types.js'; type QueryArray = (QueryObject | QueryArray)[]; export interface Params extends Record { id?: string | string[] | number; type?: string | string[]; query?: QueryArray; pageId?: string; } export default function prepareFilter(queryArray?: QueryArray, params?: Params, pageId?: ParsedPageId, useIdAsInternalId?: boolean): Record; export {};