export interface Transformer {
    preprocess(): void;
    process(): boolean;
    getPrefixCode(): string;
    getSuffixCode(): string;
}
