/** @typedef {typeof __propDef.props} InferenceWidgetProps */ /** @typedef {typeof __propDef.events} InferenceWidgetEvents */ /** @typedef {typeof __propDef.slots} InferenceWidgetSlots */ export default class InferenceWidget extends SvelteComponentTyped<{ model: import("../interfaces/Types").ModelData; noTitle?: boolean; apiUrl?: string; apiToken?: string; callApiOnMount?: boolean; shouldUpdateUrl?: boolean; }, { [evt: string]: any; }, {}> { } export type InferenceWidgetProps = typeof __propDef.props; export type InferenceWidgetEvents = typeof __propDef.events; export type InferenceWidgetSlots = typeof __propDef.slots; import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { model: import("../interfaces/Types").ModelData; noTitle?: boolean; apiUrl?: string; apiToken?: string; callApiOnMount?: boolean; shouldUpdateUrl?: boolean; }; events: { [evt: string]: any; }; slots: {}; }; export {};