import type { CalculateNextScrollByParams } from "../types"; export declare const isPercentage: (value: string) => value is `${number}%`; export declare const isPixel: (value: string) => value is `${number}px`; export declare const calculateNextScrollBy: (params: CalculateNextScrollByParams) => number;