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