export declare abstract class Printer {
    print(s: string) : void;
    println(s: string) : void;
}
