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