import React from 'react'; import type { BoxViewProps, FlexStyleProps, StyleProps } from './types'; export interface BoxProps extends StyleProps, FlexStyleProps, BoxViewProps { } declare const Box: ({ children, style, testID, ...otherProps }: BoxProps) => React.JSX.Element; export default Box;