import React from "react"; import { SharedValue } from "react-native-reanimated"; import { RefreshControlProps } from "./types"; type RefreshControlContainerProps = { top: number; refreshHeight: number; overflowPull: number; opacityValue: SharedValue; refreshValue: SharedValue; isRefreshing: SharedValue; isRefreshingWithAnimation: SharedValue; pullExtendedCoefficient: number; renderContent?: (refreshProps: RefreshControlProps) => React.ReactElement; refreshControlColor?: string; }; declare const RefreshControlContainer: React.FC; export default RefreshControlContainer; //# sourceMappingURL=refresh-control.d.ts.map