import { FC } from 'react'; import { ViewStyle } from 'react-native'; interface Props { /** * 列元素宽度 */ span?: number; /** * 列元素偏移距离 */ offset?: number; /** * 组件样式 */ style?: ViewStyle; } declare const LayoutCol: FC; export default LayoutCol;