import type { FC } from 'react'; import type { BlockProps } from '../Block'; type Direction = 'row' | 'column'; type Position = 'start' | 'center' | 'end'; export type FlexProps = BlockProps & { reverse?: boolean; wrap?: boolean; direction?: Direction; align?: Position; justify?: Position | 'between'; }; export declare const Flex: FC; export {};