import { InputQuantityProps } from "../InputQuantity.interface"; export declare class InputQuantityObject { get input(): HTMLInputElement; get supportingText(): HTMLElement; get label(): HTMLElement; get plusButton(): HTMLElement; get minusButton(): HTMLElement; text(content: string): HTMLElement; typeInInput(content: string): Promise; clickPlusButton(): Promise; clickMinusButton(): Promise; render(props?: Partial): this; }