import { TextTransformPropertyCombined } from '@johanneslumpe/css-types'; import { StyleOptions } from '../../types'; export interface TextTransformProps { /** * The **`text-transform`** CSS property 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. It also can help improve legibility for ruby. * * @see https://developer.mozilla.org/docs/Web/CSS/text-transform */ style$TextTransform: T; } export declare const textTransform: ({ themeProp, }?: Partial, Theme, Extract>>) => (props: import("../../types").WithTheme, Theme, Breakpoints>) => import("../../types").Styles | undefined;