/// /** @module @airtable/blocks/ui/system: Typography */ /** */ import { Config } from '@styled-system/core'; import { TextAlignProperty } from '../utils/csstype'; import { OptionalResponsiveProp } from '../utils/types'; /** */ export interface TextAlignProps { /** Sets the horizontal alignment of the text. */ textAlign?: OptionalResponsiveProp; } export declare const config: Config; export declare const textAlign: import("@styled-system/core").styleFn; export declare const textAlignPropTypes: import("../../../private_utils").ObjectMap>;