/// import { ScrollViewProps as RNScrollViewProps } from 'react-native'; import { BoxProps } from './Box'; export declare type LocalBoxScrollProps = {}; export declare type BoxScrollProps = BoxProps & RNScrollViewProps & LocalBoxScrollProps; export declare const BoxScroll: import("react").ForwardRefExoticComponent & import("react-native").ViewProps & import("./Box").LocalBoxProps & { active?: boolean; focus?: boolean; hover?: boolean; hoveractive?: boolean; } & RNScrollViewProps & import("react").RefAttributes> & { displayName?: string; useProps: (props?: Partial, config?: { disableCSSProps?: string[]; themeKey?: string; }) => any; };