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