import { SvelteComponent } from "svelte";
declare const __propDef: {
    props: {
        [x: string]: any;
        name?: string | undefined;
        size?: string | undefined;
        weight?: string | undefined;
        title?: string | undefined;
        color?: string | undefined;
    };
    events: {
        [evt: string]: CustomEvent<any>;
    };
    slots: {
        icon: {};
    };
    exports?: undefined;
    bindings?: undefined;
};
export type IconProps = typeof __propDef.props;
export type IconEvents = typeof __propDef.events;
export type IconSlots = typeof __propDef.slots;
export default class Icon extends SvelteComponent<IconProps, IconEvents, IconSlots> {
}
export {};
