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;
