import { AlignContentPropertyCombined } from '@johanneslumpe/css-types'; import { StyleOptions } from '../../types'; export interface AlignContentProps { /** * The CSS **`align-content`** property sets the distribution of space between and around content items along a flexbox's cross-axis or a grid's block axis. * * @see https://developer.mozilla.org/docs/Web/CSS/align-content */ style$AlignContent: T; } export declare const alignContent: ({ themeProp, }?: Partial, Theme, Extract>>) => (props: import("../../types").WithTheme, Theme, Breakpoints>) => import("../../types").Styles | undefined;