import { type ClusterReferenceName } from '../../../types/index.js';
import { type UserIdentitySchema } from '../../../data/schema/model/common/user-identity-schema.js';
export interface ClusterReferenceConnectConfigClass {
    cacheDir: string;
    devMode: boolean;
    quiet: boolean;
    userIdentity: UserIdentitySchema;
    clusterRef: ClusterReferenceName;
    context: string;
}
