import { SvelteComponent } from "svelte"; declare const __propDef: { props: { height?: any; width?: any; colourBackground?: any; shadowBackground?: any; shadowInner?: any; roundness?: any; clickable?: boolean; }; events: { [evt: string]: CustomEvent; }; slots: { default: {}; }; }; export type CardProps = typeof __propDef.props; export type CardEvents = typeof __propDef.events; export type CardSlots = typeof __propDef.slots; export default class Card extends SvelteComponent { } export {};