/** * Pads a string to the given length by repeatedly prepending the filler at the beginning of the string. * @param str The string to pad * @param targetLen The target length * @param fill The filler string to prepend. Depending on the lenght requirements, this might get truncated. */ export declare function padStart(str: string, targetLen: number, fill?: string): string;