import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { title: string; description: string; }; events: { [evt: string]: CustomEvent; }; slots: { actions: {}; }; }; export declare type CardBoxProps = typeof __propDef.props; export declare type CardBoxEvents = typeof __propDef.events; export declare type CardBoxSlots = typeof __propDef.slots; export default class CardBox extends SvelteComponentTyped { } export {};