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