/** @typedef {typeof __propDef.props} InstagramIconProps */ /** @typedef {typeof __propDef.events} InstagramIconEvents */ /** @typedef {typeof __propDef.slots} InstagramIconSlots */ export default class InstagramIcon extends SvelteComponentTyped<{ [x: string]: never; }, { [evt: string]: CustomEvent; }, {}> { } export type InstagramIconProps = typeof __propDef.props; export type InstagramIconEvents = typeof __propDef.events; export type InstagramIconSlots = typeof __propDef.slots; import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { [x: string]: never; }; events: { [evt: string]: CustomEvent; }; slots: {}; }; export {};