import React from 'react'; import type { ViewStyle } from 'react-native'; interface ScrollProps { direction?: 'vertical' | 'horizontal'; maxHeight?: number; showIndicators?: boolean; style?: ViewStyle; children?: React.ReactNode; testID?: string; } export declare function Scroll({ direction, maxHeight, showIndicators, style, children, testID }: ScrollProps): import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=scroll.d.ts.map