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