export declare class ElementOption {
    /**
     * Name of the option
     */
    name: string;
    /**
     * Value of the option
     */
    codename: string;
    constructor(
        /**
         * Name of the option
         */
        name: string, 
        /**
         * Value of the option
         */
        codename: string);
}
