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