import { ClassValue } from 'clsx'; import { ImageProps } from 'next/image'; export interface ServiceSectionProps { services: any[]; title?: string; content?: Record; className?: ClassValue; image?: ImageProps; } export declare function ServiceSection({ services, className, title, content }: ServiceSectionProps): import("react/jsx-runtime").JSX.Element;