/* csSuppress */ /** * Represents a class implementing the IGridSortingStrategy interface with a no-operation sorting strategy. * It performs no sorting and returns the data as it is. */ export declare class IgcNoopSortingStrategy { public static instance(): IgcNoopSortingStrategy; /* csSuppress */ public sort(data: any[]): any[]; }