/** @typedef {typeof __propDef.props} CardProps */ /** @typedef {typeof __propDef.events} CardEvents */ /** @typedef {typeof __propDef.slots} CardSlots */ export default class Card extends SvelteComponentTyped<{ class: any; style: any; link?: string; inverted?: boolean; floated?: string; color?: string; horizontal?: boolean; raised?: boolean; type?: string; column?: string; stackable?: boolean; fluid?: boolean; doubling?: boolean; centered?: boolean; }, { mount: CustomEvent; } & { [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: { class: any; style: any; link?: string; inverted?: boolean; floated?: string; color?: string; horizontal?: boolean; raised?: boolean; type?: string; column?: string; stackable?: boolean; fluid?: boolean; doubling?: boolean; centered?: boolean; }; events: { mount: CustomEvent; } & { [evt: string]: CustomEvent; }; slots: { default: {}; }; }; export {};