import React from 'react'; import { View } from 'react-native'; import { FlexProps } from './Flex'; /** * Row component - shorthand for Flex with direction="row" * Automatically mirrors to row-reverse in RTL */ export declare const Row: React.ForwardRefExoticComponent & React.RefAttributes>; /** * Column component - shorthand for Flex with direction="column" * Not affected by RTL (columns are vertical) */ export declare const Column: React.ForwardRefExoticComponent & React.RefAttributes>;