import { StyleOptions } from '../../types'; export interface FlexWrapProps { /** * The **`flex-wrap`** CSS property sets whether flex items are forced onto one line or can wrap onto multiple lines. If wrapping is allowed, it sets the direction that lines are stacked. * * @see https://developer.mozilla.org/docs/Web/CSS/flex-wrap */ style$FlexWrap: T; } export declare const flexWrap: ({ themeProp, }?: Partial, Theme, Extract>>) => (props: import("../../types").WithTheme, Theme, Breakpoints>) => import("../../types").Styles | undefined;