import { ComponentClass } from 'react' import { CommonEventFunction } from '@rtarojs/components/types/common' import AtComponent from './base' export interface AtFlexItemProps extends AtComponent { onClick: CommonEventFunction isAuto?: boolean isWrap?: boolean align?: 'top' | 'bottom' | 'center' size?: 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 offset?: 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 } declare const AtFlexItem: ComponentClass export default AtFlexItem