interface NumberInputOptions { selectorInit: string; selectorInput: string; } declare const NumberInput_base: any; declare class NumberInput extends NumberInput_base { constructor(element: HTMLElement, options?: Partial); _handleClick(event: MouseEvent): void; static components: WeakMap; static get options(): NumberInputOptions; } export default NumberInput;