/** @typedef {typeof __propDef.props} GithubProps */ /** @typedef {typeof __propDef.events} GithubEvents */ /** @typedef {typeof __propDef.slots} GithubSlots */ export default class Github extends SvelteComponentTyped<{ size?: string; color?: string; strokeWidth?: string; class?: string; }, { [evt: string]: CustomEvent; }, {}> { } export type GithubProps = typeof __propDef.props; export type GithubEvents = typeof __propDef.events; export type GithubSlots = typeof __propDef.slots; import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { size?: string; color?: string; strokeWidth?: string; class?: string; }; events: { [evt: string]: CustomEvent; }; slots: {}; }; export {};