import GeneratedExpression from './GeneratedExpression'; import ParameterType from './ParameterType'; export default class CombinatorialGeneratedExpressionFactory { private readonly expressionTemplate; private readonly parameterTypeCombinations; constructor(expressionTemplate: string, parameterTypeCombinations: Array>>); generateExpressions(): GeneratedExpression[]; private generatePermutations; }