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