import React from 'react';
import { ISection } from '../Section/Section';
import { IMediaObject, IPropsAny } from '../types';
export interface ISectionReviewsItem {
    name: string;
    meta?: string;
    description: string;
    rating?: number;
    image?: string | IMediaObject;
}
export interface ISectionReviews extends ISection {
    values?: ISectionReviewsItem[];
    size?: 'small' | 'regular' | 'large';
    AvatarProps?: IPropsAny;
    TypeProps?: IPropsAny;
    NameProps?: IPropsAny;
    MetaProps?: IPropsAny;
    DescriptionProps?: IPropsAny;
    RatingProps?: IPropsAny;
    ReviewProps?: IPropsAny;
}
declare const Element: React.FC<ISectionReviews>;
export default Element;
