import React from 'react';

type ReviewCardProps = {
    author: string;
    rating: number;
    text: string;
    date?: string;
    avatar?: string;
};

type MbnGoogleReviewProps = {
    reviews?: ReviewCardProps[];
    placeId?: string;
    apiKey?: string;
    layout?: "grid" | "slider";
    showTitle?: boolean;
    titleText?: string;
    descriptionText?: string;
    ctaLabel?: string;
    onCTAClick?: () => void;
};
declare const MbnGoogleReview: React.FC<MbnGoogleReviewProps>;

export { MbnGoogleReview };
