import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { class?: string | undefined; style?: string | undefined | null; }; events: { [evt: string]: CustomEvent; }; slots: { default: {}; }; }; export declare type CardSubtitleProps = typeof __propDef.props; export declare type CardSubtitleEvents = typeof __propDef.events; export declare type CardSubtitleSlots = typeof __propDef.slots; export default class CardSubtitle extends SvelteComponentTyped { } export {};