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