/** * Squidex API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * * @export */ export declare const ActionTypeEnum: { readonly Broadcast: "Broadcast"; readonly User: "User"; readonly Group: "Group"; }; export type ActionTypeEnum = typeof ActionTypeEnum[keyof typeof ActionTypeEnum]; export declare function instanceOfActionTypeEnum(value: any): boolean; export declare function ActionTypeEnumFromJSON(json: any): ActionTypeEnum; export declare function ActionTypeEnumFromJSONTyped(json: any, _ignoreDiscriminator: boolean): ActionTypeEnum; export declare function ActionTypeEnumToJSON(value?: ActionTypeEnum | null): any;