import * as React from 'react'; import { ServiceData, ServiceDataTypes } from './getServiceData'; export declare const SectionWithTitle: ({ title, description, children, }: React.PropsWithChildren<{ title: string; description?: string | undefined; }>) => JSX.Element; export declare const ContentSection: ({ content }: { content: ServiceData; }) => JSX.Element;