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