import { RuntimeFn } from '../../../node_modules/@vanilla-extract/recipes/dist/vanilla-extract-recipes.cjs.d.js'; declare const cardStyles: { card: RuntimeFn<{ /** * Specifies the padding inside the card. * This prop accepts one of the following values: "none" or "base". * @default base */ padding: { base: { padding: `var(--${string})` | `var(--${string}, ${string})`; }; none: { padding: number; }; }; }>; }; declare const cardBackgroundColorProperties: { transparent: string; background: `var(--${string})` | `var(--${string}, ${string})`; primary: `var(--${string})` | `var(--${string}, ${string})`; secondary: `var(--${string})` | `var(--${string}, ${string})`; }; export { cardBackgroundColorProperties, cardStyles };