/** * 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 { ParticipantField } from './ParticipantField'; /** * * @export * @interface GroupsFields */ export interface GroupsFields { /** * * @type {Array} * @memberof GroupsFields */ participants: Array; /** * * @type {number} * @memberof GroupsFields */ numberOfGroups: number; } /** * Check if a given object implements the GroupsFields interface. */ export declare function instanceOfGroupsFields(value: object): value is GroupsFields; export declare function GroupsFieldsFromJSON(json: any): GroupsFields; export declare function GroupsFieldsFromJSONTyped(json: any, ignoreDiscriminator: boolean): GroupsFields; export declare function GroupsFieldsToJSON(value?: GroupsFields | null): any;