import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { [x: string]: any; title: string; description: string; label: string; }; events: { [evt: string]: CustomEvent; }; slots: {}; }; export declare type CardTitleDescriptionProps = typeof __propDef.props; export declare type CardTitleDescriptionEvents = typeof __propDef.events; export declare type CardTitleDescriptionSlots = typeof __propDef.slots; export default class CardTitleDescription extends SvelteComponentTyped { } export {};