import { ReactNode } from 'react'; /** Scollable container that adds a top and bottom shadow on scroll */ export declare function AcmScrollable(props: { children?: ReactNode; borderTop?: boolean; borderBottom?: boolean; }): JSX.Element;