import React from 'react'; import { IViewProps } from '../View'; import { color } from '../utils/propTypes/color'; export interface ISimpleLayoutProps extends IViewProps { readonly backgroundColor?: color; readonly padded?: boolean | 'horizontal' | 'vertical'; readonly onScrollEnd?: () => void; readonly onPullDown?: () => void; readonly tolerance?: number; } declare const _default: React.MemoExoticComponent>>; export default _default;