import React, { type ReactNode } from 'react'; import type { TouchableOpacityProps } from 'react-native'; import { type FlexAlignType, type StyleProp, type ViewStyle } from 'react-native'; type Props = { children: ReactNode; flex?: number; justifyContent?: 'flex-start' | 'flex-end' | 'center' | 'space-between' | 'space-around' | 'space-evenly' | undefined; wrap?: 'wrap' | 'nowrap' | 'wrap-reverse' | undefined; alignItems?: FlexAlignType; styles?: StyleProp; onPress?: () => void; touchableProps?: TouchableOpacityProps; }; declare const Row: (props: Props) => React.JSX.Element; export default Row; //# sourceMappingURL=Row.d.ts.map