import { type HTMLAttributes } from "react";
export interface TestimonialGridProps extends HTMLAttributes {
}
export declare const TestimonialGrid: import("react").ForwardRefExoticComponent>;
export interface TestimonialCardProps extends HTMLAttributes {
quote: string;
authorName: string;
authorRole?: string;
authorImage?: string;
/** Show avatar or initials icon */
showIcon?: boolean;
}
export declare const TestimonialCard: import("react").ForwardRefExoticComponent>;