import { MintsSortBy, RarityRanks } from './types'; export declare const getMintRank: (sortBy: Exclude, ranks: RarityRanks) => number | null; export declare const getSortSign: (sortBy: MintsSortBy) => 1 | -1; type Mint = { grossAmount?: string | null; lastSale?: string | null; ordinal?: string | null; ranks: RarityRanks; txAt: number; normalizedPrice?: string | null; hybridAmount?: string | null; }; type SortFunction = (a: Mint, b: Mint) => number; export declare const makeMintsSortFn: (sortBy: MintsSortBy) => SortFunction; export {}; //# sourceMappingURL=mints.d.ts.map