FlexType: React.FC<React.PropsWithChildren<FlexProps>> & {
Align: Record<
"BASELINE"
| "CENTER"
| "END"
| "START"
| "STRETCH",
string,
>;
Child: React.FC<React.PropsWithChildren<FlexChildProps>> & {
defaultProps: FlexChildProps;
};
defaultProps: FlexProps;
Direction: Record<"HORIZONTAL" | "HORIZONTAL_REVERSE" | "VERTICAL", string>;
Justify: Record<"AROUND" | "BETWEEN" | "CENTER" | "END" | "START", string>;
Wrap: Record<"WRAP" | "NO_WRAP" | "WRAP_REVERSE", string>;
}