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