import { type Ref } from 'vue'; type Side = 'start' | 'none' | 'end' | 'both'; export declare function useScrollSide(elRef: Ref, options?: { direction?: 'vertical' | 'horizontal' | 'both'; distance?: number; }): { horizontal: Side; vertical: Side; }; export {};