import { CSSProperties } from 'react';
import { Amount, Coverage } from '@open-tender/types';
export declare const selectItemsWithEqualDistribution: (min: number, max: number, cellsCount: number, coverage: Coverage) => number[];
export declare const getCoverageMinMaxMap: (cellsCount: number) => Record<Coverage, {
    min: number;
    max: number;
}>;
export declare const toppingAlignItems: Record<number, CSSProperties['alignItems']>;
export declare const toppingJustifyContent: Record<number, CSSProperties['justifyContent']>;
export declare const squareSizeMap: Record<Amount, number>;
