import { PropsWithChildren } from 'react';
interface ScrollBarProps {
    height: number;
    page: number;
}
export default function ScrollBar({ height, page, children }: PropsWithChildren<ScrollBarProps>): JSX.Element;
export {};
//# sourceMappingURL=ScrollBar.d.ts.map