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