import { FC } from 'react'; import { ViewStyle } from 'react-native'; declare type JustifyType = 'start' | 'end' | 'center' | 'space-around' | 'space-between'; declare type AlignType = 'top' | 'center' | 'bottom'; interface Props { /** * 列元素之间的间距(单位为 px) */ gutter?: number; /** * 主轴对齐方式,可选值为 start end center space-around space-between * @default start */ justify?: JustifyType; /** * 交叉轴对齐方式,可选值为 top center bottom * @default top */ align?: AlignType; /** * 是否自动换行 * @default true */ wrap?: boolean; /** * 组件样式 */ style?: ViewStyle; } declare const LayoutRow: FC; export default LayoutRow;