export interface ScrollFadeProps { /** * ScrollFade content */ children: React.ReactNode; /** * Additional class name. */ className?: string; /** * Scrollbar type * @default custom */ scrollBar?: 'default' | 'custom'; /** * Size of fade in percentages. * @default 20 */ fadeSize?: 0 | 10 | 20; /** * Fade position * @default both */ fadePosition?: 'top' | 'bottom' | 'both'; /** * Called when element is scrolled to top */ onScrollToTop?: () => void; /** * Called when element is scrolled to bottom */ onScrollToBottom?: () => void; } export declare const ScrollFade: import('react').ForwardRefExoticComponent>; export default ScrollFade;