/** * Convert from snake case to camel case, but preserve leading underscores. */ export declare function snakeToCamel(str: string): string;