/*! Strand UI | MIT License | dillingerstaffing.com */ import type { JSX } from "preact"; export interface FeatureSurfaceProps extends JSX.HTMLAttributes { /** Element to render. */ as?: "div" | "article" | "section"; /** Inner padding; `none` also clips children to the radius. */ padding?: "none" | "sm" | "md" | "lg" | "xl"; className?: string; } /** * The single emphasised dark surface of a view (DL 9.3); ordinary text primitives inside it retint themselves. * * @example *

Ship 042

*/ export declare const FeatureSurface: import("preact").FunctionalComponent & { ref?: import("preact").Ref | undefined; }>; //# sourceMappingURL=FeatureSurface.d.ts.map