/** * Recipe configuration for the Card component. * Defines the styling variants and base styles using Chakra UI's recipe system. */ export declare const cardRecipe: import('@chakra-ui/react').SlotRecipeDefinition<"root" | "body" | "footer" | "header", { size: { sm: { root: { "--card-spacing": "spacing.300"; }; }; md: { root: { "--card-spacing": "spacing.400"; }; }; lg: { root: { "--card-spacing": "spacing.600"; }; }; }; variant: { plain: { root: { backgroundColor: "bg"; }; }; outlined: { root: { border: "solid-25"; borderColor: "colorPalette.6"; backgroundColor: "bg"; }; }; elevated: { root: { shadow: "1"; backgroundColor: "bg"; }; }; "outlined-elevated": { root: { border: "solid-25"; borderColor: "colorPalette.6"; shadow: "1"; backgroundColor: "bg"; }; }; muted: { root: { backgroundColor: "colorPalette.2"; }; }; "outlined-muted": { root: { border: "solid-25"; borderColor: "colorPalette.6"; backgroundColor: "colorPalette.2"; }; }; "elevated-muted": { root: { shadow: "1"; backgroundColor: "colorPalette.2"; }; }; "outlined-elevated-muted": { root: { border: "solid-25"; borderColor: "colorPalette.6"; shadow: "1"; backgroundColor: "colorPalette.2"; }; }; }; }>;