import { TextAlignPropertyCombined } from '@johanneslumpe/css-types'; import { StyleOptions } from '../../types'; export interface TextAlignProps { /** * The **`text-align`** CSS property sets the horizontal alignment of a block element or table-cell box. This means it works like `vertical-align` but in the horizontal direction. * * @see https://developer.mozilla.org/docs/Web/CSS/text-align */ style$TextAlign: T; } export declare const textAlign: ({ themeProp, }?: Partial, Theme, Extract>>) => (props: import("../../types").WithTheme, Theme, Breakpoints>) => import("../../types").Styles | undefined;