/** * Used to map a model with custom schema with fields in a root to values object. * eg. File Manager File model has "title" and "tags" fields in the root, but they should be * mapped to "values.title" and "values.tags" when creating the entry. */ import { GenericRecord } from "@webiny/api/types.js"; import { CmsEntryListWhere } from "../../types/types.js"; import { CmsWhereMapper, ICmsWhereMapperParams } from "./abstractions.js"; declare class WhereMapperImpl implements CmsWhereMapper.Interface { map(params: ICmsWhereMapperParams): CmsEntryListWhere | undefined; private mapWhere; } export declare const WhereMapper: typeof WhereMapperImpl & { __abstraction: import("@webiny/di").Abstraction; }; export {};