export type ReviewCardVariant = 'default' | 'compact' | 'quote'; interface ReviewCardProps { author: string; avatar?: string; rating?: number; title?: string; body: string; date?: string | Date | number; verified?: boolean; /** Optional product context line */ product?: string; location?: string; /** Photo URLs attached to the review */ images?: string[]; helpful?: number; notHelpful?: number; /** Clamp body and show “Read more” */ clamp?: number; variant?: ReviewCardVariant; class?: string; onhelpful?: (helpful: boolean) => void; onreply?: () => void; } declare const ReviewCard: import("svelte").Component; type ReviewCard = ReturnType; export default ReviewCard;