import { SortingState, UseCollectionOptions } from '../interfaces'; export declare function createComparator(sorting: UseCollectionOptions['sorting'], state: SortingState | undefined): null | ((a: T, b: T) => number);