import React from 'react'; import { UseCase } from 'types/entities.types'; export interface Props { currentUseCase?: UseCase; useCases?: UseCase[]; onChange: (selectedUseCase: UseCase) => void; } export declare const UseCasesList: React.FC;