import { FC } from 'react'; /** * Scroll properties */ export interface ScrollPropsStrict { /** Adds one or more classnames for an element */ className?: string; /** Set the component HTML element. */ el?: 'div' | 'pre' | 'nav' | 'form' | 'blockquote' | 'table'; /** Maximum height. If undefined, height to be set 100% and must be restricted by external container. */ height?: string; /** Control overflow-x behavior */ horizontal?: 'auto' | 'hidden' | 'scroll'; /** Hide scrollbar keepeng content scrollable */ scrollbar?: 'hidden'; /** Show or hide scroll shadows */ scrollIndicator?: boolean; /** Control overflow-y behavior */ vertical?: 'auto' | 'hidden' | 'scroll'; /** Maximum width. If undefined, width to be set 100% and must be restricted by external container. */ width?: string; } export interface ScrollProps extends ScrollPropsStrict { [propName: string]: any; } export declare const Scroll: FC;