import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { [x: string]: any; icon?: string; }; events: { [evt: string]: CustomEvent; }; slots: { icon: {}; }; }; export declare type CardIconProps = typeof __propDef.props; export declare type CardIconEvents = typeof __propDef.events; export declare type CardIconSlots = typeof __propDef.slots; export default class CardIcon extends SvelteComponentTyped { } export {};