import { FlexFlowPropertyCombined } from '@johanneslumpe/css-types'; import { StyleOptions } from '../../types'; export interface FlexFlowProps { /** * The **`flex-flow`** CSS property is a shorthand property for `flex-direction` and `flex-wrap` properties. * * @see https://developer.mozilla.org/docs/Web/CSS/flex-flow */ style$FlexFlow: T; } export declare const flexFlow: ({ themeProp, }?: Partial, Theme, Extract>>) => (props: import("../../types").WithTheme, Theme, Breakpoints>) => import("../../types").Styles | undefined;