import Kdu from 'kdu' import type { PluginFunction, PluginObject } from 'kdu' declare const isKdu2: boolean declare const isKdu3: boolean declare const Kdu2: typeof Kdu | undefined declare const version: string declare const install: (kdu?: typeof Kdu) => void /** * @deprecated To avoid bringing in all the tree-shakable modules, this API has been deprecated. Use `Kdu2` or named exports instead. */ declare const V: typeof Kdu /** * DebuggerEvent is a Kdu 3 development only feature. This type cannot exist in Kdu 2. */ export declare type DebuggerEvent = never // accept no generic because Kdu 3 doesn't accept any export declare type Plugin = PluginObject | PluginFunction export type { VNode } from 'kdu' export * from '@kdujs/composition-api' export { V as Kdu, Kdu2, isKdu2, isKdu3, version, install, }