import { SvelteComponentTyped } from "svelte";
declare const __propDef: {
    props: {
        [x: string]: any;
        data?: string;
        size?: string | undefined;
        width?: string;
        height?: string;
        color?: string | undefined;
        stroke?: string;
        fill?: string;
        viewBox?: string;
    };
    events: {
        [evt: string]: CustomEvent<any>;
    };
    slots: {};
};
export declare type SvgParserProps = typeof __propDef.props;
export declare type SvgParserEvents = typeof __propDef.events;
export declare type SvgParserSlots = typeof __propDef.slots;
export default class SvgParser extends SvelteComponentTyped<SvgParserProps, SvgParserEvents, SvgParserSlots> {
}
export {};
