import { WMDataType } from "../jobs/wm-data-type"; import { WMValue } from "../jobs/wm-value"; export declare class TestParameter { readonly name: string; readonly parameterType: WMDataType; readonly required: boolean; readonly optDescription?: string | undefined; readonly optDisplayName?: string | undefined; readonly defaultVal?: WMValue | undefined; constructor(name: string, parameterType: WMDataType, required: boolean, optDescription?: string | undefined, optDisplayName?: string | undefined, defaultVal?: WMValue | undefined); }