import type { PropsWithChildren } from 'react'; export type ScrollableProps = PropsWithChildren<{ horizontal?: boolean; vertical?: boolean; smooth?: boolean; onScrollContent?: (touching: { top: boolean; }) => void; }>; declare const Scrollable: ({ children, horizontal, vertical, smooth, onScrollContent, }: ScrollableProps) => import("react/jsx-runtime").JSX.Element; export default Scrollable; //# sourceMappingURL=Scrollable.d.ts.map