import type { ComponentType, ReactNode } from 'react' import type { HTMLAttrs } from './common' export interface TestimonialProps extends HTMLAttrs { testimonial: string title?: string additionalInfo?: string testimonialStyle?: 'large' | 'heading' showDivider?: boolean image?: string | ReactNode tokens?: Record variant?: Record } export declare const Testimonial: ComponentType