/*! Strand UI | MIT License | dillingerstaffing.com */ import type { JSX } from "preact"; export interface CardProps extends JSX.HTMLAttributes { /** Surface style; `interactive` is kept for compatibility, prefer the boolean. */ variant?: "elevated" | "outlined" | "flat" | "warm" | "interactive"; /** Inner padding. */ padding?: "none" | "sm" | "md" | "lg" | "xl"; /** Hover and pointer affordance, orthogonal to the surface. */ interactive?: boolean; /** Pressed or selected state. */ active?: boolean; /** Element to render, e.g. "article". */ as?: keyof JSX.IntrinsicElements; } /** * Contained surface for grouping related content. * * @example *

Title

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