/** @typedef {typeof __propDef.props} GitBranchPlusProps */ /** @typedef {typeof __propDef.events} GitBranchPlusEvents */ /** @typedef {typeof __propDef.slots} GitBranchPlusSlots */ export default class GitBranchPlus extends SvelteComponentTyped<{ size?: string; color?: string; strokeWidth?: string; class?: string; }, { [evt: string]: CustomEvent; }, {}> { } export type GitBranchPlusProps = typeof __propDef.props; export type GitBranchPlusEvents = typeof __propDef.events; export type GitBranchPlusSlots = 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 {};