/** * Used to map sorting for custom CMS Models. */ import { type CmsEntryListSort } from "../../types/types.js"; import { CmsSortMapper, ICmsSortMapperParams } from "./abstractions.js"; declare class SortImpl implements CmsSortMapper.Interface { map(params: ICmsSortMapperParams): CmsEntryListSort | undefined; private mapSort; } export declare const SortMapper: typeof SortImpl & { __abstraction: import("@webiny/di").Abstraction; }; export {};