import { StyleOptions } from '../../types'; export interface FlexShrinkProps { /** * The **`flex-shrink`** CSS property sets the flex shrink factor of a flex item. If the size of all flex items is larger than the flex container, items shrink to fit according to `flex-shrink`. * * @see https://developer.mozilla.org/docs/Web/CSS/flex-shrink */ style$FlexShrink: T; } export declare const flexShrink: ({ themeProp, }?: Partial, Theme, Extract>>) => (props: import("../../types").WithTheme, Theme, Breakpoints>) => import("../../types").Styles | undefined;