import React from "react"; import { Theme, ThemeFontVariant, ThemeIntent } from "../types"; export declare const SECTION_INTENTS: Record; export declare type CtFAQSectionProps = { mainImage?: string; sectionTitle?: string; title?: string; children: React.ReactNode; disablePaddings?: boolean; intent?: ThemeIntent | "dark" | "light"; theme?: Theme; fontVariant?: ThemeFontVariant; }; declare function CtFAQSection({ sectionTitle, title, children, theme, intent, fontVariant, disablePaddings, }: CtFAQSectionProps): JSX.Element; declare namespace CtFAQSection { var defaultProps: { title: null; intent: ThemeIntent; fontVariant: ThemeFontVariant; subtitle: null; disablePaddings: boolean; }; } export default CtFAQSection;