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