///
type FontProps = {
type: 'bold' | 'italic' | 'bolditalic';
children: string | string[];
mark?: '*' | '_';
};
type ImplFontProps = Omit;
export declare const Italic: (props: ImplFontProps) => JSX.Element;
export declare const Bold: (props: ImplFontProps) => JSX.Element;
export declare const BoldItalic: (props: ImplFontProps) => JSX.Element;
export declare function StrikeThrough({ children }: {
children: string;
}): JSX.Element;
export {};