/** @typedef {typeof __propDef.props} CardChatProps */ /** @typedef {typeof __propDef.events} CardChatEvents */ /** @typedef {typeof __propDef.slots} CardChatSlots */ export default class CardChat extends SvelteComponentTyped<{ [x: string]: any; }, { [evt: string]: CustomEvent; }, { aside: {}; content: {}; }> { } export type CardChatProps = typeof __propDef.props; export type CardChatEvents = typeof __propDef.events; export type CardChatSlots = typeof __propDef.slots; import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { [x: string]: any; }; events: { [evt: string]: CustomEvent; }; slots: { aside: {}; content: {}; }; }; export {};