/** @typedef {typeof __propDef.props} FunnelProps */ /** @typedef {typeof __propDef.events} FunnelEvents */ /** @typedef {typeof __propDef.slots} FunnelSlots */ export default class Funnel extends SvelteComponentTyped<{ width?: number; height?: number; class?: string; style?: string; }, { [evt: string]: CustomEvent; }, {}> { } export type FunnelProps = typeof __propDef.props; export type FunnelEvents = typeof __propDef.events; export type FunnelSlots = typeof __propDef.slots; import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { width?: number; height?: number; class?: string; style?: string; }; events: { [evt: string]: CustomEvent; }; slots: {}; }; export {};