export declare class Option {
    protected parameter: string;
    protected value: string;
    constructor(parameter: string, value: string);
    getParameter(): string;
    getValue(): string;
}
