import type { RowType, PluginHook } from '../../types/index.js';
export declare const useSortBy: PluginHook;
export declare function defaultOrderByFn(arr: RowType[], funcs: Array<(a: RowType, b: RowType) => number>, dirs: boolean[]): RowType[];
