import { AlignItemsPropertyCombined } from '@johanneslumpe/css-types'; import { StyleOptions } from '../../types'; export interface AlignItemsProps { /** * The CSS **`align-items`** property sets the `align-self` value on all direct children as a group. In Flexbox, it controls the alignment of items on the Cross Axis. In Grid Layout, it controls the alignment of items on the Block Axis within their grid area. * * @see https://developer.mozilla.org/docs/Web/CSS/align-items */ style$AlignItems: T; } export declare const alignItems: ({ themeProp, }?: Partial, Theme, Extract>>) => (props: import("../../types").WithTheme, Theme, Breakpoints>) => import("../../types").Styles | undefined;