import { type HTMLAttributes } from "react"; export type SectionSize = "sm" | "md" | "lg"; export type SectionBackground = "default" | "muted" | "dark"; export interface SectionProps extends HTMLAttributes { size?: SectionSize; background?: SectionBackground; } export declare const Section: import("react").ForwardRefExoticComponent>; export interface SectionHeaderProps extends HTMLAttributes { title: string; description?: string; } export declare const SectionHeader: import("react").ForwardRefExoticComponent>;