import type { Component } from 'react';
import type { AnimatedRef } from './commonTypes';
interface ComponentRef extends Component {
    getNativeScrollRef?: () => ComponentRef;
    getScrollableNode?: () => ComponentRef;
}
export declare function useAnimatedRef<T extends ComponentRef>(): AnimatedRef<T>;
export {};
