@hhgtech/hhg-components
Version:
Hello Health Group common components
11 lines (10 loc) • 539 B
TypeScript
import React from 'react';
import type { AuthorFormatMessage, AuthorFormatMessageOptionsKeys } from "./getAuthorForBoostCard";
export type BoostCardArticleAuthorNameProps = AuthorFormatMessage & {
formatOptionsProps?: Partial<Record<AuthorFormatMessageOptionsKeys, Record<string, string | number | undefined> & {
href?: string;
className?: string;
style?: React.CSSProperties;
}>>;
};
export declare const BoostCardArticleAuthorName: (props: BoostCardArticleAuthorNameProps) => React.JSX.Element;