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