import { SvelteComponentTyped } from "svelte"; export declare function getEventsAction(component: any): (node: EventTarget) => { destroy: () => void; }; declare const __propDef: { props: { [x: string]: any; width: number; height: number; viewBox: string; id: string; fill?: string; curComponent?: any; }; events: { [evt: string]: CustomEvent; }; slots: {}; }; export declare type IconBaseProps = typeof __propDef.props; export declare type IconBaseEvents = typeof __propDef.events; export declare type IconBaseSlots = typeof __propDef.slots; export default class IconBase extends SvelteComponentTyped { } export {};