import { FlexProps } from './types/Flex.props.ts'; import { FC } from 'react'; /** * Flex container built on `Box`. Sets `display: flex` (or `inline-flex` * when `inline` is true) with a configurable `gap` token. Accepts all * `Box` props for additional layout customization. */ declare const Flex: FC; export default Flex;