///
import { WrappableComponent } from './hoc';
export * from "./hooks";
export declare const ScrollIntoView: import("react").ForwardRefExoticComponent<{
enabled?: boolean | undefined;
scrollIntoViewKey?: string | number | boolean | undefined;
animated?: boolean | undefined;
immediate?: boolean | undefined;
onMount?: boolean | undefined;
onUpdate?: boolean | undefined;
scrollIntoViewOptions?: Partial | undefined;
scrollIntoViewAPI?: import("./api").ScrollIntoViewAPI | undefined;
children?: import("react").ReactNode;
} & Partial & import("react-native").ViewProps & import("react").RefAttributes>;
export declare const wrapScrollView: (comp: WrappableComponent) => import("react").ComponentType | undefined;
scrollEventThrottle?: number | undefined;
innerRef?: any;
contentOffset?: number | undefined;
}>;
export declare const wrapScrollViewConfigured: (config?: Partial | undefined) => (comp: WrappableComponent) => import("react").ComponentType | undefined;
scrollEventThrottle?: number | undefined;
innerRef?: any;
contentOffset?: number | undefined;
}>;