import { TypedNumericParam } from './_Numeric';
import { ParamType } from '../poly/ParamType';
import { ParamValuesTypeMap } from './types/ParamValuesTypeMap';
import { ParamInitValuesTypeMap } from './types/ParamInitValuesTypeMap';
export declare class BooleanParam extends TypedNumericParam<ParamType.BOOLEAN> {
    static type(): ParamType;
    defaultValueSerialized(): string | boolean;
    rawInputSerialized(): string | number | boolean;
    valueSerialized(): boolean;
    protected _copyValue(param: BooleanParam): void;
    static areRawInputEqual(raw_input1: ParamInitValuesTypeMap[ParamType.BOOLEAN], raw_input2: ParamInitValuesTypeMap[ParamType.BOOLEAN]): boolean;
    static areValuesEqual(val1: ParamValuesTypeMap[ParamType.BOOLEAN], val2: ParamValuesTypeMap[ParamType.BOOLEAN]): boolean;
    convert(raw_val: ParamInitValuesTypeMap[ParamType.BOOLEAN]): boolean | null;
}
