declare function alignLeft(str: string, width: number): string; declare function alignRight(str: string, width: number): string; declare function alignCenter(str: string, width: number): string; export declare const left: typeof alignLeft; export declare const right: typeof alignRight; export declare const center: typeof alignCenter; export {};