export default abstract class Factory {
    pattern: RegExp;
    constructor(pattern: RegExp);
    split(raw: string): string[];
}
