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