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