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