import { JustifyContentPropertyCombined } from '@johanneslumpe/css-types'; import { StyleOptions } from '../../types'; export interface JustifyContentProps { /** * The CSS **`justify-content`** property defines how the browser distributes space between and around content items along the main-axis of a flex container, and the inline axis of a grid container. * * @see https://developer.mozilla.org/docs/Web/CSS/justify-content */ style$JustifyContent: T; } export declare const justifyContent: ({ themeProp, }?: Partial, Theme, Extract>>) => (props: import("../../types").WithTheme, Theme, Breakpoints>) => import("../../types").Styles | undefined;