import type { ViewProps } from "@tarojs/components/types/View"; import * as React from "react"; import { type ReactNode, type CSSProperties } from "react"; import type { 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;