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