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