/** * Transform snake_case string to camelCase string * @param s Snake_case string */ export declare function snakeToCamel(s: string): string; /** * Transform camelCase string to PascalCase string * @param s camelCase string */ export declare const camelToPascal: (s: string) => string; /** * Format a string as a JS documentation comment * @param s Comment to format */ export declare function jsComment(s: string): string; /** * Indent the string with the given amount of spaces * * @param size Number of spaces to indent with * @param s String to indent */ export declare function indent(size: number, s: string): string;