import { PlaceContentPropertyCombined } from '@johanneslumpe/css-types'; import { StyleOptions } from '../../types'; export interface PlaceContentProps { /** * The `**place-content**` CSS property is a shorthand for `align-content` and `justify-content`. It can be used in any layout method which utilizes both of these alignment values. * * @see https://developer.mozilla.org/docs/Web/CSS/place-content */ style$PlaceContent: T; } export declare const placeContent: ({ themeProp, }?: Partial, Theme, Extract>>) => (props: import("../../types").WithTheme, Theme, Breakpoints>) => import("../../types").Styles | undefined;