import * as React from 'react'; interface CustomerCaseStudyProps { customerName: string; logoUrl?: string; industry?: string; projectDescription: string; color?: string; quote?: string; metrics?: Array<{ label: string; value: string; }>; children?: React.ReactNode; } export default function CaseStudy({ customerName, logoUrl, industry, projectDescription, color, quote, metrics, children, }: CustomerCaseStudyProps): import("react/jsx-runtime").JSX.Element; export {};