/**
 * Represents metadata for sorting.
 * @group Interface
 */
export interface SortMeta {
    field: string;
    order: number;
}
