import { WritableSignal } from "@angular/core"; export declare class SdSortingManager { private readonly _options; constructor(_options: { sorts: WritableSignal; }); defMap: import("@angular/core").Signal>; toggle(key: string, multiple: boolean): void; sort(items: T[]): T[]; } export interface ISdSortingDef { key: string; desc: boolean; }