import { StyleOptions } from '../../types'; export interface TextDecorationStyleProps { /** * The **`text-decoration-style`** CSS property sets the style of the lines specified by `text-decoration-line`. The style applies to all lines that are set with `text-decoration-line`. * * @see https://developer.mozilla.org/docs/Web/CSS/text-decoration-style */ style$TextDecorationStyle: T; } export declare const textDecorationStyle: ({ themeProp, }?: Partial, Theme, Extract>>) => (props: import("../../types").WithTheme, Theme, Breakpoints>) => import("../../types").Styles | undefined;