import type { ReactNode } from 'react'; export interface TestimonialsDarkProps { headline?: string; subheadline?: string; className?: string; children?: ReactNode; } export declare function TestimonialsDark({ headline, subheadline, className, children, }: TestimonialsDarkProps): import("react/jsx-runtime").JSX.Element;