import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { [x: string]: any; title: string; subTitle: string; image: string; }; events: { [evt: string]: CustomEvent; }; slots: { default: {}; }; }; export declare type CardWelcomeListProps = typeof __propDef.props; export declare type CardWelcomeListEvents = typeof __propDef.events; export declare type CardWelcomeListSlots = typeof __propDef.slots; export default class CardWelcomeList extends SvelteComponentTyped { } export {};