export declare function useWheelSize(): {
    wheelSize: import('vue').ComputedRef<{
        width: number;
        height: number;
    }>;
    wheelStyle: import('vue').ComputedRef<{
        width: string;
        height: string;
        margin: string;
        'will-change': string;
        transform: string;
        'backface-visibility': string;
        perspective: string;
        contain: string;
        isolation: string;
    }>;
};
