import { State, StateFactory } from './state';
export default abstract class CodeStateFactory extends StateFactory {
readonly factories: StateFactory[];
protected constructor(source: string[], factories: StateFactory[]);
test(): number;
createState(): State;
}