import { TextEmphasisProperty } from '@johanneslumpe/css-types'; import { StyleOptions } from '../../types'; export interface TextEmphasisProps { /** * The **`text-emphasis`** CSS property applies emphasis marks to text (except spaces and control characters). It is a shorthand for `text-emphasis-style` and `text-emphasis-color`. * * @see https://developer.mozilla.org/docs/Web/CSS/text-emphasis */ style$TextEmphasis: T; } export declare const textEmphasis: ({ themeProp, }?: Partial, Theme, Extract>>) => (props: import("../../types").WithTheme, Theme, Breakpoints>) => import("../../types").Styles | undefined;