import React, { type ComponentProps } from 'react'; import type { ThemeTokens as Tokens } from '../../themes'; import { Box } from '../Box'; export interface ScrollPaneProps extends Omit, 'overflow'> { bottomGap?: keyof Tokens['space']; serverVhFallback?: number; includeMobile?: boolean; className?: string; /** @deprecated No-op. Thumb is pill-rounded by default. Will be removed in the next major. */ rounded?: boolean; } export declare const ScrollPane: React.ForwardRefExoticComponent & React.RefAttributes>; //# sourceMappingURL=ScrollPane.d.ts.map