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