declare class StringFuncs { static zeroPad(str: string, len?: number): string; static toProperCase(str: string): string; static leftExtendStr(str?: string, length?: number, padChar?: string): string; static rightExtendStr(str?: string, length?: number, padChar?: string): string; } export default StringFuncs;