import React from "react"; import { Theme, ThemeFontVariant, ThemeIntent } from "../types"; export declare const SECTION_INTENTS: Record; export declare type CtSectionProps = { title?: string; subtitle?: string; children: React.ReactNode; intent?: ThemeIntent | "dark" | "light"; theme?: Theme; fontVariant?: ThemeFontVariant; featuredImageOrientation?: "left" | "right"; featuredImage?: string; featuredImageAlt?: string; featureImageDisablePaddings?: boolean; featuredImageDisableBorder?: boolean; featuredImageSmall?: boolean; disablePaddings?: boolean; enableFeaturedContent?: boolean; featuredImageBorderNotCentered?: boolean; mobileFeaturedContentCondensed?: boolean; }; declare function CtSection({ title, subtitle, children, theme, intent, fontVariant, featuredImageOrientation, featuredImage, featuredImageAlt, featureImageDisablePaddings, featuredImageDisableBorder, featuredImageBorderNotCentered, featuredImageSmall, enableFeaturedContent, disablePaddings, mobileFeaturedContentCondensed, }: CtSectionProps): JSX.Element; declare namespace CtSection { var defaultProps: { title: null; intent: ThemeIntent | "dark" | "light"; theme: Theme; fontVariant: ThemeFontVariant; subtitle: null; featuredImageOrientation: string; featuredImage: null; featuredImageAlt: null; featureImageDisablePaddings: boolean; featuredImageDisableBorder: boolean; featuredImageBorderNotCentered: boolean; featuredImageSmall: boolean; disablePaddings: boolean; enableFeaturedContent: boolean; mobileFeaturedContentCondensed: boolean; }; } export default CtSection;