/** @typedef {typeof __propDef.props}  SiElgatoProps */
/** @typedef {typeof __propDef.events}  SiElgatoEvents */
/** @typedef {typeof __propDef.slots}  SiElgatoSlots */
export default class SiElgato extends SvelteComponent<{
    color?: string | undefined;
    size?: number | undefined;
    title?: string | undefined;
}, {
    [evt: string]: CustomEvent<any>;
}, {}> {
}
export type SiElgatoProps = typeof __propDef.props;
export type SiElgatoEvents = typeof __propDef.events;
export type SiElgatoSlots = 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 {};
