import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { /** * Sets the direction of the Card's contents */ direction?: "column" | "row" | undefined; }; events: { click: MouseEvent; } & { [evt: string]: CustomEvent; }; slots: { image: { slot: string; }; default: {}; }; }; export type CardButtonProps = typeof __propDef.props; export type CardButtonEvents = typeof __propDef.events; export type CardButtonSlots = typeof __propDef.slots; /** * CardButton * * Card that contains content and that can be used as a button * * 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 * * Events: * - click: Triggered when the card is clicked * * CSS Variables: * - cardBg(default:#f0f0f0): Sets the card's background color * - cardBgFocus(default:#c0c0c0): Sets the card's background color on hover/focus * - borderRadius(default:0.5rem): Sets the border radius of the card * - cardMargin(default:1rem): Sets the margin for the card */ export default class CardButton extends SvelteComponentTyped { } export {};