import type { CmsEntryListSort, CmsModelField } from "../../types/index.js"; export interface ICmsSortMapperParams { fields: Pick[]; input: CmsEntryListSort | undefined; } export interface ICmsSortMapper { map(params: ICmsSortMapperParams): CmsEntryListSort | undefined; } /** Map CMS sort parameters to storage queries. */ export declare const CmsSortMapper: import("@webiny/di").Abstraction; export declare namespace CmsSortMapper { type Interface = ICmsSortMapper; type Params = ICmsSortMapperParams; }