/*! Strand UI | MIT License | dillingerstaffing.com */ import type { JSX } from "preact"; export interface SectionProps extends JSX.HTMLAttributes { /** Padding rhythm. */ variant?: "standard" | "hero" | "compact"; background?: "primary" | "elevated" | "recessed"; borderTop?: boolean; /** Element to render, e.g. "header". */ as?: keyof JSX.IntrinsicElements; } /** * Page-level content region. * * @example *
...
*/ export declare const Section: import("preact").FunctionalComponent & { ref?: import("preact").Ref | undefined; }>; //# sourceMappingURL=Section.d.ts.map