/** @typedef {typeof __propDef.props}  SiInkscapeProps */
/** @typedef {typeof __propDef.events}  SiInkscapeEvents */
/** @typedef {typeof __propDef.slots}  SiInkscapeSlots */
export default class SiInkscape extends SvelteComponent<{
    color?: string | undefined;
    size?: number | undefined;
    title?: string | undefined;
}, {
    [evt: string]: CustomEvent<any>;
}, {}> {
}
export type SiInkscapeProps = typeof __propDef.props;
export type SiInkscapeEvents = typeof __propDef.events;
export type SiInkscapeSlots = typeof __propDef.slots;
import { SvelteComponent } from "svelte";
declare const __propDef: {
    props: {
        color?: string | undefined;
        size?: number | undefined;
        title?: string | undefined;
    };
    events: {
        [evt: string]: CustomEvent<any>;
    };
    slots: {};
};
export {};
