export interface ContentSectionProps { className?: string; children: React.ReactNode; image?: string; imageAlt?: string; imagePosition?: "left" | "right"; overlay?: boolean; } export declare function ImageSection({ className, children, image, imageAlt, imagePosition, overlay, }: ContentSectionProps): import("react/jsx-runtime").JSX.Element;