/// <reference types="react" />
type AuthorCardProps = {
    description: string;
    img: string;
    imgAlt: string;
    name: string;
    title: string;
};
export declare const AuthorCard: ({ description, img, imgAlt, name, title }: AuthorCardProps) => JSX.Element;
export {};
