/// import { ExcludedProps, VariantProps } from "@vitality-ds/system"; import { CSSValueByPropertyName } from "../helpers/logic/type-helpers"; import { CommonLayoutProps } from "../helpers/styles/Layout/types"; import { BaseFlex } from "./styled"; export declare type FlexProps = ExcludedProps & VariantProps & CommonLayoutProps & { direction?: CSSValueByPropertyName<"flexDirection">; children?: React.ReactNode; };