/** * Linkbreakers API * This is a documentation of all the APIs of Linkbreakers * * The version of the OpenAPI document: 1.118.3 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import type { ChatUIOption } from './ChatUIOption'; /** * * @export * @interface ChatUIAction */ export interface ChatUIAction { /** * * @type {string} * @memberof ChatUIAction */ label?: string; /** * * @type {Array} * @memberof ChatUIAction */ options?: Array; /** * * @type {string} * @memberof ChatUIAction */ type?: string; /** * * @type {string} * @memberof ChatUIAction */ value?: string; } /** * Check if a given object implements the ChatUIAction interface. */ export declare function instanceOfChatUIAction(value: object): value is ChatUIAction; export declare function ChatUIActionFromJSON(json: any): ChatUIAction; export declare function ChatUIActionFromJSONTyped(json: any, ignoreDiscriminator: boolean): ChatUIAction; export declare function ChatUIActionToJSON(json: any): ChatUIAction; export declare function ChatUIActionToJSONTyped(value?: ChatUIAction | null, ignoreDiscriminator?: boolean): any;