interface CalcThresholdOptions {
    actionCount: number;
    direction: 'left' | 'right';
    width: number;
}
export declare const calcThreshold: ({ actionCount, direction, width }: CalcThresholdOptions) => number;
export {};
