import { IElementOption } from '../../interfaces/element/ielement-option.interface'; export declare class ElementOption implements IElementOption { /** * 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); }