/** * ELEMENTS API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * * @export * @interface Event */ export interface Event { /** * * @type {string} * @memberof Event */ id: string; /** * * @type {string} * @memberof Event */ name: string; /** * * @type {string} * @memberof Event */ group: string; /** * * @type {string} * @memberof Event */ iconClass: string; /** * * @type {string} * @memberof Event */ licenseComponent: string; /** * * @type {{ [key: string]: string | undefined; }} * @memberof Event */ readonly argTypes: { [key: string]: string | undefined; }; } export declare function EventFromJSON(json: any): Event; export declare function EventFromJSONTyped(json: any, ignoreDiscriminator: boolean): Event; export declare function EventToJSON(value?: Event | null): any;