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