import { StyleOptions } from '../../types'; export interface FlexDirectionProps { /** * The **`flex-direction`** CSS property sets how flex items are placed in the flex container defining the main axis and the direction (normal or reversed). * * @see https://developer.mozilla.org/docs/Web/CSS/flex-direction */ style$FlexDirection: T; } export declare const flexDirection: ({ themeProp, }?: Partial, Theme, Extract>>) => (props: import("../../types").WithTheme, Theme, Breakpoints>) => import("../../types").Styles | undefined;