import { BPComponentProps, UiConfigRendererContextType } from "./BPComponent"; import { BPInputComponent } from "./BPInputComponent"; import { BPValueComponentState } from "./BPValueComponent"; export type BPSliderComponentState = BPValueComponentState & { min: number; max: number; step: number; unit?: string; }; export declare class BPSliderInputComponent extends BPInputComponent { constructor(props: BPComponentProps, context: UiConfigRendererContextType); getUpdatedState(state: BPSliderComponentState): BPSliderComponentState; flexBasis: string; renderInput(): import("react/jsx-runtime").JSX.Element[]; }