import { DisplayMode } from "../common/DisplayMode"; import type { OnChangeHandler } from "../common/OnChangeHandler"; import type UnitOption from "./UnitOption"; interface $$__sveltets_2_IsomorphicComponent = any, Events extends Record = any, Slots extends Record = any, Exports = {}, Bindings = string> { new (options: import('svelte').ComponentConstructorOptions): import('svelte').SvelteComponent & { $$bindings?: Bindings; } & Exports; (internal: unknown, props: Props & { $$events?: Events; $$slots?: Slots; }): Exports & { $set?: any; $on?: any; }; z_$$bindings?: Bindings; } declare const UnitNumberEditor: $$__sveltets_2_IsomorphicComponent<{ disabled?: boolean; readonly?: boolean; variant?: "" | "plain" | "outlined" | "filled"; compact?: boolean; class?: string; style?: string; value: number | null; prefix?: string; allowNegative?: boolean; displayMode?: DisplayMode; removable?: boolean; unitCode?: string; onchange?: OnChangeHandler; onfocus?: ((event: FocusEvent) => void) | null; onblur?: ((event: FocusEvent) => void) | null; units: Array; menu$height?: number; placeholder?: string; setFocus?: () => void; }, { [evt: string]: CustomEvent; }, { 'leading-icon': {}; }, { class: string; setFocus: () => void; }, string>; type UnitNumberEditor = InstanceType; export default UnitNumberEditor;