import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { [x: string]: any; icon?: string; title?: string; isTitle?: boolean; red?: boolean; }; events: { click: MouseEvent; } & { [evt: string]: CustomEvent; }; slots: {}; }; export declare type IconBlockProps = typeof __propDef.props; export declare type IconBlockEvents = typeof __propDef.events; export declare type IconBlockSlots = typeof __propDef.slots; export default class IconBlock extends SvelteComponentTyped { } export {};