import { PlaceItemsPropertyCombined } from '@johanneslumpe/css-types'; import { StyleOptions } from '../../types'; export interface PlaceItemsProps { /** * The CSS **`place-items`** shorthand property sets the `align-items` and `justify-items` properties, respectively. If the second value is not set, the first value is also used for it. * * @see https://developer.mozilla.org/docs/Web/CSS/place-items */ style$PlaceItems: T; } export declare const placeItems: ({ themeProp, }?: Partial, Theme, Extract>>) => (props: import("../../types").WithTheme, Theme, Breakpoints>) => import("../../types").Styles | undefined;