import { MotionValue } from '../../types'; interface Options { axisSpring: MotionValue; scale: number; refSize: number; windowSize: number; } export declare const useAxis: ({ axisSpring, scale, refSize, windowSize }: Options) => { axis: MotionValue; progress: MotionValue; size: number; }; export {};