/** @typedef {typeof __propDef.props} GifIconProps */ /** @typedef {typeof __propDef.events} GifIconEvents */ /** @typedef {typeof __propDef.slots} GifIconSlots */ export default class GifIcon extends SvelteComponentTyped<{ [x: string]: any; }, { [evt: string]: CustomEvent; }, {}> { } export type GifIconProps = typeof __propDef.props; export type GifIconEvents = typeof __propDef.events; export type GifIconSlots = typeof __propDef.slots; import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { [x: string]: any; }; events: { [evt: string]: CustomEvent; }; slots: {}; }; export {};