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