import { TextEmphasisPositionPropertyCombined } from '@johanneslumpe/css-types'; import { StyleOptions } from '../../types'; export interface TextEmphasisPositionProps { /** * The **`text-emphasis-position`** CSS property sets where emphasis marks are drawn. Like ruby text, if there isn't enough room for emphasis marks, the line height is increased. * * @see https://developer.mozilla.org/docs/Web/CSS/text-emphasis-position */ style$TextEmphasisPosition: T; } export declare const textEmphasisPosition: ({ themeProp, }?: Partial, Theme, Extract>>) => (props: import("../../types").WithTheme, Theme, Breakpoints>) => import("../../types").Styles | undefined;