import { MotionStyle, MotionValue } from 'motion/react';
export type UseThumbIconRes = {
    icon: string;
    styles: MotionStyle;
};
export declare const useThumbIcon: (x: MotionValue<number>, iconColor: string) => UseThumbIconRes;
