import { Reverse } from '@itrocks/sort';
import { Option } from './option';
export type PropertyPath = string | Reverse;
export type PropertyPaths = Array<PropertyPath>;
export declare class Sort extends Option {
    properties: PropertyPaths;
    constructor(properties: PropertyPaths);
}
export declare function sort(properties: PropertyPaths): Sort;
