import * as React from "react";
interface IProps {
    id: string;
    addScrollArea(id: string, node: unknown): any;
    removeScrollArea(id: string): any;
}
export declare class ScrollArea extends React.Component<IProps> {
    node: React.RefObject<HTMLDivElement>;
    id: string;
    componentDidMount(): void;
    componentWillUnmount(): void;
    render(): JSX.Element;
}
declare const _default: (props: any) => JSX.Element;
export default _default;
