export type TGetStrWithSnakeCaseArgs = Parameters; export type TGetStrWithSnakeCaseReturn = ReturnType; /** * Converts a string to snake_case. * @param {string} str Source string * @returns {string} snake_case string * @throws {TypeError} getStrWithSnakeCase: str must be a string * @example * getStrWithSnakeCase("helloWorld value"); // "hello_world_value" * @example * // Convert an action name into an analytics event key * const eventName = getStrWithSnakeCase("Product Added To Cart"); // "product_added_to_cart" */ export declare const getStrWithSnakeCase: (str: string) => string;