export declare function atoi26(s: string): number; export declare const arraycopy: (src: any[], srcPos: number, dest: any[], destPos: number, length: number) => void; export declare const fill: (a: any[], fromIndex: number, toIndex: number, val: any) => void; export interface PrintStream { print: (msg?: any) => void; println: (msg?: any) => void; } export declare const printStream: PrintStream; export declare class StringBuffer { buf: string; constructor(); append(s: string): void; toString(): string; }