import { ApiAccess } from './ApiAccess';
/** Structure describing access to NVMeoF cluster */
export interface ClusterAccess {
    /** Cluster data path access */
    apiData: ApiAccess;
    /** Cluster management API access */
    apiManagement: ApiAccess;
    /** CA certificate */
    caCert: string;
}
//# sourceMappingURL=ClusterAccess.d.ts.map