import type { ReactNode } from "react"; import React from "react"; import type { TypographyOptions } from "../Typography"; interface EmphasisProps { readonly variation: "bold" | "italic" | "highlight"; readonly children: ReactNode; } export interface VariationMap { [variation: string]: TypographyOptions; } export declare function Emphasis({ variation, children }: EmphasisProps): React.JSX.Element; export {};