import { FlexProperty } from '@johanneslumpe/css-types'; import { StyleOptions } from '../../types'; export interface FlexProps { /** * The **`flex`** CSS property sets how a flex item will grow or shrink to fit the space available in its flex container. It is a shorthand for `flex-grow`, `flex-shrink`, and `flex-basis`. * * @see https://developer.mozilla.org/docs/Web/CSS/flex */ style$Flex: T; } export declare const flex: ({ themeProp, }?: Partial, Theme, Extract>>) => (props: import("../../types").WithTheme, Theme, Breakpoints>) => import("../../types").Styles | undefined;