import { FlexBasisProperty } from '@johanneslumpe/css-types'; import { StyleOptions } from '../../types'; export interface FlexBasisProps { /** * The **`flex-basis`** CSS property sets the initial main size of a flex item. It sets the size of the content box unless otherwise set with `box-sizing`. * * @see https://developer.mozilla.org/docs/Web/CSS/flex-basis */ style$FlexBasis: T; } export declare const flexBasis: ({ themeProp, }?: Partial, Theme, Extract>>) => (props: import("../../types").WithTheme, Theme, Breakpoints>) => import("../../types").Styles | undefined;