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