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