1 | import React from 'react';
|
2 | import type { ScrollViewProps } from 'react-native';
|
3 | import { ScrollView } from 'react-native';
|
4 | import type { SharedValue } from '../commonTypes';
|
5 | import type { AnimatedProps } from '../helperTypes';
|
6 | export interface AnimatedScrollViewProps extends AnimatedProps<ScrollViewProps> {
|
7 | scrollViewOffset?: SharedValue<number>;
|
8 | }
|
9 | interface AnimatedScrollViewComplement extends ScrollView {
|
10 | getNode(): ScrollView;
|
11 | }
|
12 | declare const AnimatedScrollViewComponent: React.ComponentClass<import("../helperTypes").AnimateProps<ScrollViewProps>, any>;
|
13 | export declare const AnimatedScrollView: React.ForwardRefExoticComponent<AnimatedScrollViewProps & React.RefAttributes<AnimatedScrollView>>;
|
14 | export type AnimatedScrollView = AnimatedScrollViewComplement & typeof AnimatedScrollViewComponent;
|
15 | export {};
|
16 |
|
\ | No newline at end of file |