/** * Helper method to convert camel case * to kebab case * @param str */ export declare const convertToKebabCase: (str: string) => string;