import type { Field, TableHandler, SortParams } from '..'; export default class SortHandler { private backup; private table; constructor(table: TableHandler); set(field: Field, id: string, params?: SortParams): void; asc(field: Field, id: string, { locales, options }?: SortParams): void; desc(field: Field, id: string, { locales, options }?: SortParams): void; clear(): void; restore(): void; private save; }