/** @typedef {typeof __propDef.props} FunnelFillProps */ /** @typedef {typeof __propDef.events} FunnelFillEvents */ /** @typedef {typeof __propDef.slots} FunnelFillSlots */ export default class FunnelFill extends SvelteComponentTyped<{ width?: number; height?: number; class?: string; style?: string; }, { [evt: string]: CustomEvent; }, {}> { } export type FunnelFillProps = typeof __propDef.props; export type FunnelFillEvents = typeof __propDef.events; export type FunnelFillSlots = 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 {};