import { PropsWithChildren, ReactElement } from 'react'; import { NScrollView } from 'vevet'; import { IUseScrollView } from './utils/useScrollView'; export interface IScrollViewProviderProps extends PropsWithChildren, Pick, Pick { /** Used to destory the previous instance and create a new one */ instanceKey: string | number; /** * Enable or disable the ScrollView * @default false */ isEnabled?: boolean; } export declare type TScrollViewElementAnimation = 'fadeIn' | 'fadeInUp'; export interface IScrollViewElementProps extends Pick { viewClassName?: string; viewedClassName?: string; isDisabled?: boolean; animation?: TScrollViewElementAnimation; children: ReactElement; } //# sourceMappingURL=types.d.ts.map