/** * Class that describes a select option used mainly in list of choices * for populating available options */ export declare class DescriptorOption { /** * The option key */ key: any; /** * The option value */ value: string; }