import { JustifyItemsPropertyCombined } from '@johanneslumpe/css-types'; import { StyleOptions } from '../../types'; export interface JustifyItemsProps { /** * The CSS **`justify-items`** property defines the default `justify-self` for all items of the box, giving them all a default way of justifying each box along the appropriate axis. * * @see https://developer.mozilla.org/docs/Web/CSS/justify-items */ style$JustifyItems: T; } export declare const justifyItems: ({ themeProp, }?: Partial, Theme, Extract>>) => (props: import("../../types").WithTheme, Theme, Breakpoints>) => import("../../types").Styles | undefined;