import { TextDecorationLinePropertyCombined } from '@johanneslumpe/css-types'; import { StyleOptions } from '../../types'; export interface TextDecorationLineProps { /** * The **`text-decoration-line`** CSS property sets the kind of decoration that is used on text in an element, such as an underline or overline. * * @see https://developer.mozilla.org/docs/Web/CSS/text-decoration-line */ style$TextDecorationLine: T; } export declare const textDecorationLine: ({ themeProp, }?: Partial, Theme, Extract>>) => (props: import("../../types").WithTheme, Theme, Breakpoints>) => import("../../types").Styles | undefined;