import { TServiceParams } from "@digital-alchemy/core"; export interface NumberEditorRenderOptions { current?: number; /** * Text that should appear the blue bar of the help text */ helpNotes?: string | ((current: number) => string); label?: string; locale?: boolean; max?: number; min?: number; placeholder?: string; width?: number; } export declare function NumberEditor({ terminal, config }: TServiceParams): void;