/** * Converts a camelCase string to kebab-case (dash-separated) string. * @param {string} camelCaseStr - The camelCase string to convert. * @returns {string} The kebab-case string. */ export declare const camelToDash: (camelCaseStr: string) => string; /** * Renders an HTML string representing an HTML element with attributes based on the provided props. */ export declare const renderWithAttributes: (tag: string, props: any, content?: string) => string;