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