/// /** @module @airtable/blocks/ui/system: Typography */ /** */ import { Config } from '@styled-system/core'; import { TextTransformProperty } from '../utils/csstype'; import { OptionalResponsiveProp } from '../utils/types'; /** */ export interface TextTransformProps { /** Specifies how to capitalize an element's text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized. */ textTransform?: OptionalResponsiveProp; } export declare const config: Config; export declare const textTransform: import("@styled-system/core").styleFn; export declare const textTransformPropTypes: import("../../../private_utils").ObjectMap>;