export declare function camelCaseToWords(str: string): string;
export declare function camelCaseToSnake(str: string): string;
/**
 * pad string with symbol
 * @param n
 * @param width
 * @param symbol
 */
export declare function pad(n: string | number, width: number, symbol?: string): string;
