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