import { BPComponentProps, UiConfigRendererContextType } from "./BPComponent"; import { BPInputComponent } from "./BPInputComponent"; import { BPValueComponentState } from "./BPValueComponent"; export declare class BPNumberInputComponent extends BPInputComponent & { unit?: string; }> { constructor(props: BPComponentProps, context: UiConfigRendererContextType); private _inputs; refreshConfigState(state?: BPValueComponentState): Promise; private _onChange; renderInput(): import("react/jsx-runtime").JSX.Element; }