import { SvelteComponentTyped } from "svelte"; import type { FlexAlign, FlexJustify } from '../../unocss/types'; import './Card.css'; declare const __propDef: { props: { [x: string]: any; align?: FlexAlign | undefined; justify?: FlexJustify | undefined; href?: string | undefined; title?: string | undefined; classes?: string | undefined; }; events: { click: MouseEvent; } & { [evt: string]: CustomEvent; }; slots: { title: {}; default: {}; footer: {}; }; }; export type CardProps = typeof __propDef.props; export type CardEvents = typeof __propDef.events; export type CardSlots = typeof __propDef.slots; export default class Card extends SvelteComponentTyped { } export {};