import { ComponentDriver, IComponentDriverOption, IInputDriver, Interactor, PartLocator } from '@atomic-testing/core';
export declare class HTMLHiddenInputDriver extends ComponentDriver<{}> implements IInputDriver<string | null> {
    constructor(locator: PartLocator, interactor: Interactor, option?: Partial<IComponentDriverOption>);
    getValue(): Promise<string | null>;
    setValue(_value: string | null): Promise<boolean>;
    get driverName(): string;
}
