/** * EAS API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.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. */ import type { BaseResult } from './BaseResult'; import type { Participant } from './Participant'; /** * * @export * @interface GroupsResult */ export interface GroupsResult extends BaseResult { /** * * @type {Array>} * @memberof GroupsResult */ value?: Array> | null; } /** * Check if a given object implements the GroupsResult interface. */ export declare function instanceOfGroupsResult(value: object): value is GroupsResult; export declare function GroupsResultFromJSON(json: any): GroupsResult; export declare function GroupsResultFromJSONTyped(json: any, ignoreDiscriminator: boolean): GroupsResult; export declare function GroupsResultToJSON(value?: Omit | null): any;