export declare const SortingMethod: {
    readonly Lexicographical: "lexicographical";
    readonly Natural: "natural";
    readonly Predefined: "predefined";
    readonly Random: "random";
};
export type SortingMethod = typeof SortingMethod[keyof typeof SortingMethod];
