import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { /** * Sets the direction of the Card's contents */ direction?: "column" | "row" | undefined; }; events: { [evt: string]: CustomEvent; }; slots: { image: { slot: string; }; default: {}; }; }; export type CardProps = typeof __propDef.props; export type CardEvents = typeof __propDef.events; export type CardSlots = typeof __propDef.slots; /** * Card * * Card that contains content * * Props: * - direction ("row"|"column"): Sets the direction of the Card's contents * * Slots: * - default: Sets the content of the card * - image: Sets a header image for the card * * CSS Variables: * - cardBg(default:#f0f0f0): Sets the card's background color * - borderRadius(default:0.5rem): Sets the border radius of the card * - cardMargin(default:1rem): Sets the margin for the card */ export default class Card extends SvelteComponentTyped { } export {};