import { TextUnderlinePositionPropertyCombined } from '@johanneslumpe/css-types'; import { StyleOptions } from '../../types'; export interface TextUnderlinePositionProps { /** * The **`text-underline-position`** CSS property specifies the position of the underline which is set using the `text-decoration` property's `underline` value. * * @see https://developer.mozilla.org/docs/Web/CSS/text-underline-position */ style$TextUnderlinePosition: T; } export declare const textUnderlinePosition: ({ themeProp, }?: Partial, Theme, Extract>>) => (props: import("../../types").WithTheme, Theme, Breakpoints>) => import("../../types").Styles | undefined;