import { SIZES } from 'components/Scrollable/constants';
import React from 'react';
/**
*
* The Scrollable component can be used along with the Header and SubHeader to show
*
* large tables or UI that needs scrolling. It provides a scrollable container in
*
* the remaining space.
*
* @example
*
* import Scrollable from "@bigbinary/neeto-molecules/Scrollable";
*
* const App = () => (
*
* {[...Array(20)].map((_, i) => (
*
* ))}
*
* );
* @endexample
*/
declare const Scrollable: React.FC<{
className?: string;
size?: keyof typeof SIZES;
} & React.DetailedHTMLProps, HTMLDivElement>>;
export { Scrollable as default };