/** @typedef {typeof __propDef.props} CardProps */ /** @typedef {typeof __propDef.events} CardEvents */ /** @typedef {typeof __propDef.slots} CardSlots */ export default class Card extends SvelteComponentTyped<{ interactive?: boolean; selected?: boolean; }, { message: MouseEvent | UIEvent | Event | ProgressEvent | AnimationEvent | InputEvent | FocusEvent | CompositionEvent | DragEvent | ErrorEvent | PointerEvent | KeyboardEvent | SecurityPolicyViolationEvent | TouchEvent | TransitionEvent | WheelEvent | ClipboardEvent; click: MouseEvent; dblclick: MouseEvent; } & { [evt: string]: CustomEvent; }, { default: {}; }> { } export type CardProps = typeof __propDef.props; export type CardEvents = typeof __propDef.events; export type CardSlots = typeof __propDef.slots; import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { interactive?: boolean; selected?: boolean; }; events: { message: MouseEvent | UIEvent | Event | ProgressEvent | AnimationEvent | InputEvent | FocusEvent | CompositionEvent | DragEvent | ErrorEvent | PointerEvent | KeyboardEvent | SecurityPolicyViolationEvent | TouchEvent | TransitionEvent | WheelEvent | ClipboardEvent; click: MouseEvent; dblclick: MouseEvent; } & { [evt: string]: CustomEvent; }; slots: { default: {}; }; }; export {};