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