import { HTMLAttributes, ReactNode, default as React } from 'react'; import { AvatarProps } from '../Avatar/Avatar'; import { ReviewCardHeader } from './ReviewCardHeader'; export interface ReviewCardOwnPropsWithChildren { children: ReactNode; } /** @inheritdoc */ export interface ReviewCardOwnPropsWithoutChildren extends Pick { /** * The title of the review. */ title?: string; /** * The content of the review. */ content: ReactNode; } /** @inheritdoc */ export type ReviewCardProps = HTMLAttributes & (ReviewCardOwnPropsWithChildren | ReviewCardOwnPropsWithoutChildren); export declare const ReviewCard: React.ForwardRefExoticComponent> & { Header: typeof ReviewCardHeader; Content: React.ForwardRefExoticComponent>; Footer: React.ForwardRefExoticComponent & React.RefAttributes>; };