import { type ReactNode } from "react"; import { type FlexStyle, type ViewProps } from "react-native"; export type FlexProps = { children: ReactNode; direction?: "row" | "column" | "row-reverse" | "column-reverse"; align?: "flex-start" | "flex-end" | "center" | "stretch"; gap?: number | "xs" | "sm" | "md" | "lg" | "xl"; justify?: "flex-start" | "flex-end" | "center" | "space-between"; shrink?: number; grow?: number; wrap?: FlexStyle["flexWrap"]; } & ViewProps; export declare function Flex({ children, direction, align, gap, justify, shrink, grow, wrap, style, ...rest }: FlexProps): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=index.d.ts.map