import { TypedParam } from './_Base';
import { ParamType } from '../poly/ParamType';
import { ParamValuesTypeMap } from './types/ParamValuesTypeMap';
import { ParamInitValuesTypeMap } from './types/ParamInitValuesTypeMap';
export declare class ButtonParam extends TypedParam<ParamType.BUTTON> {
    static type(): ParamType;
    defaultValueSerialized(): null;
    rawInputSerialized(): null;
    valueSerialized(): null;
    protected _copyValue(param: ButtonParam): void;
    static areRawInputEqual(raw_input1: ParamInitValuesTypeMap[ParamType.BUTTON], raw_input2: ParamInitValuesTypeMap[ParamType.BUTTON]): boolean;
    static areValuesEqual(val1: ParamValuesTypeMap[ParamType.BUTTON], val2: ParamValuesTypeMap[ParamType.BUTTON]): boolean;
    pressButton(): Promise<void>;
}
