/** @typedef {typeof __propDef.props} TuiLegendProps */ /** @typedef {typeof __propDef.events} TuiLegendEvents */ /** @typedef {typeof __propDef.slots} TuiLegendSlots */ export default class TuiLegend extends SvelteComponent<{ [x: string]: any; }, { [evt: string]: CustomEvent; }, { default: {}; }> { } export type TuiLegendProps = typeof __propDef.props; export type TuiLegendEvents = typeof __propDef.events; export type TuiLegendSlots = typeof __propDef.slots; import { SvelteComponent } from "svelte"; declare const __propDef: { props: { [x: string]: any; }; events: { [evt: string]: CustomEvent; }; slots: { default: {}; }; }; export {};