/** @typedef {typeof __propDef.props} AttachProps */ /** @typedef {typeof __propDef.events} AttachEvents */ /** @typedef {typeof __propDef.slots} AttachSlots */ export default class Attach extends SvelteComponentTyped< { [x: string]: any }, { [evt: string]: CustomEvent }, {} > {} export type AttachProps = typeof __propDef.props export type AttachEvents = typeof __propDef.events export type AttachSlots = typeof __propDef.slots import { SvelteComponentTyped } from 'svelte' declare const __propDef: { props: { [x: string]: any } events: { [evt: string]: CustomEvent } slots: {} } export {}