import React from 'react'; import { ViewStyle, StyleProp, ScrollView, RefreshControl } from 'react-native'; import { SpacingProps } from '../../../theme'; import { BackgroundProps, TestableProps } from '../../common'; export interface ContainerProps extends SpacingProps, BackgroundProps, TestableProps { children: React.ReactNode; style?: StyleProp; scrollable?: boolean; scrollViewProps?: React.ComponentProps; dismissKeyboardOnTapOutside?: boolean; flex?: number; defaultScrollToBottom?: boolean; onReachBottom?: () => void; reachBottomThreshold?: number; isLoadingMore?: boolean; pullToRefresh?: boolean; refreshing?: boolean; onRefresh?: () => void; refreshControlProps?: React.ComponentProps; } export interface ContainerHandle { scrollToBottom: (animated?: boolean) => void; } export declare const Container: React.ForwardRefExoticComponent>; //# sourceMappingURL=Container.d.ts.map