/**
 * Kubernetes
 * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
 *
 * The version of the OpenAPI document: unversioned
 *
 *
 * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
 * https://openapi-generator.tech
 * Do not edit the class manually.
 */
/**
 * GroupSubject holds detailed information for group-kind subject.
 * @export
 * @interface IoK8sApiFlowcontrolV1GroupSubject
 */
export interface IoK8sApiFlowcontrolV1GroupSubject {
    /**
     * name is the user group that matches, or "*" to match all user groups. See https://github.com/kubernetes/apiserver/blob/master/pkg/authentication/user/user.go for some well-known group names. Required.
     * @type {string}
     * @memberof IoK8sApiFlowcontrolV1GroupSubject
     */
    name: string;
}
export declare function IoK8sApiFlowcontrolV1GroupSubjectFromJSON(json: any): IoK8sApiFlowcontrolV1GroupSubject;
export declare function IoK8sApiFlowcontrolV1GroupSubjectFromJSONTyped(json: any, _ignoreDiscriminator: boolean): IoK8sApiFlowcontrolV1GroupSubject;
export declare function IoK8sApiFlowcontrolV1GroupSubjectToJSON(value?: IoK8sApiFlowcontrolV1GroupSubject | null): any;
