import { HTMLWidget } from "@hpcc-js/common";
import "../src/Input.css";
export declare class Range extends HTMLWidget {
_inputElement: any[];
constructor();
enter(domNode: any, element: any): void;
update(domNode: any, element: any): void;
insertSelectOptions(optionsArr: any): void;
}
export interface Range {
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;
selectOptions(): any[];
selectOptions(_: any[]): this;
selectOptions_exists(): boolean;
low(): number;
low(_: number): this;
low_exists(): boolean;
high(): number;
high(_: number): this;
high_exists(): boolean;
step(): number;
step(_: number): this;
step_exists(): boolean;
}