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