import { MutableRefObject } from 'react'; type Dimensions = 'horizontal' | 'vertical'; export declare function useIsOverflowing(ref: MutableRefObject, dimension?: Dimensions): boolean; export {};