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