import { AlignSelfPropertyCombined } from '@johanneslumpe/css-types'; import { StyleOptions } from '../../types'; export interface AlignSelfProps { /** * The **`align-self`** CSS property overrides a grid or flex item's `align-items` value. In Grid, it aligns the item inside theĀ grid area. In Flexbox, it aligns the item on the cross axis. * * @see https://developer.mozilla.org/docs/Web/CSS/align-self */ style$AlignSelf: T; } export declare const alignSelf: ({ themeProp, }?: Partial, Theme, Extract>>) => (props: import("../../types").WithTheme, Theme, Breakpoints>) => import("../../types").Styles | undefined;