import { Factory } from './factory';
export declare type FactoryClass<T> = new () => Factory<T>;
export declare type Constructable<T> = new (...args: any[]) => T;
export declare type SequenceFn = (i: number) => any;
