export declare class PrintLine { characters: string[]; constructor(width: number, space?: string); get width(): number; fillString(x: number, str: string, width?: number): void; fill(x: number, value: any, width?: number): void; join(): string; }