export declare class Param { value?: string; key?: string; type?: string; constructor(input?: { value?: string; key?: string; type?: string; }); toJSON(): any; static fromJSON(input: any): Param; } export declare namespace Param { type JSON = { key?: string; value?: string; type?: string; }; } //# sourceMappingURL=param.d.ts.map