import React from 'react'; import { AlignItems, JustifyContent } from '../Grid'; import { ExternalStyles } from '../../styles'; export type FlowDirection = 'horizontal' | 'vertical'; export type JustifyItems = 'start' | 'center' | 'end' | 'stretch'; export interface FlowProps extends Omit, 'style'> { direction: FlowDirection; gap?: number; alignItems?: AlignItems; justifyContent?: JustifyContent; justifyItems?: JustifyItems; style?: ExternalStyles; } export declare const Flow: React.ForwardRefExoticComponent>;