declare const sort: (arr: any[]) => {
    ascendingByProperty: (prop: string) => any[];
    descendingByProperty: (prop: string) => any[];
    firstAscendingByProperty: (prop1: string) => {
        thenAscendingByProperty: (prop2: string) => Record<string, unknown>[];
        thenDescendingByProperty: (prop2: string) => Record<string, unknown>[];
    };
    firstDescendingByProperty: (prop1: string) => {
        thenAscendingByProperty: (prop2: string) => Record<string, unknown>[];
        thenDescendingByProperty: (prop2: string) => Record<string, unknown>[];
    };
};
export { sort };
