import { ViewProps } from "@tarojs/components/types/View"; import * as React from "react"; import { CSSProperties, ReactNode } from "react"; import { FlexAlign, FlexDirection, FlexGutter, FlexJustify, FlexWrap } from "./flex.shared"; export interface FlexProps extends ViewProps { style?: CSSProperties; direction?: FlexDirection; wrap?: FlexWrap; justify?: FlexJustify; align?: FlexAlign; gutter?: FlexGutter; children?: ReactNode; } declare const Flex: React.ForwardRefExoticComponent & React.RefAttributes>; export default Flex;