import { HTMLWidget } from "@hpcc-js/common"; import "../src/Input.css"; export declare class InputRange extends HTMLWidget { _inputElement: any[]; _labelElement: any[]; _rangeData: any[]; constructor(); enter(domNode: any, element: any): void; update(domNode: any, element: any): void; } export interface InputRange { name(): string; name(_: string): this; name_exists(): boolean; label(): string; label(_: string): this; label_exists(): boolean; value(): any[]; value(_: any[]): this; value_exists(): boolean; validate(): string; validate(_: string): this; validate_exists(): boolean; type(): string; type(_: string): this; type_exists(): boolean; inlineLabel(): string; inlineLabel(_: string): this; inlineLabel_exists(): boolean; }