/** * Pad 's' on the left with 'char' until it is n characters wide */ export declare function leftPad(s: string, n: number, char: string): string;