import { Spot, Stone } from '../internal-types';
export declare const getNewSpot: ({ availableSpots, optimalSpot, containerSize, stone, }: {
    availableSpots: Spot[];
    optimalSpot: Spot;
    containerSize: number;
    stone: Stone;
}) => Spot;
export declare const getOptimalSpot: ({ availableSpots, stone, }: {
    availableSpots: Spot[];
    stone: Stone;
}) => any;
