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