import { TextDecorationProperty } from '@johanneslumpe/css-types'; import { StyleOptions } from '../../types'; export interface TextDecorationProps { /** * The **`text-decoration`** shorthand CSS property sets the appearance of decorative lines on text. It is a shorthand for `text-decoration-line`, `text-decoration-color`, and `text-decoration-style`. * * @see https://developer.mozilla.org/docs/Web/CSS/text-decoration */ style$TextDecoration: T; } export declare const textDecoration: ({ themeProp, }?: Partial, Theme, Extract>>) => (props: import("../../types").WithTheme, Theme, Breakpoints>) => import("../../types").Styles | undefined;