import type { SortOption } from '../types';
export declare function applySort<T>(data: T[], sort: SortOption<T> | SortOption<T>[]): T[];
