/** * Transforms a string to kebab case variable name. * @returns The kebab case string (e.g. '123 hello world 234?' -> 'hello-world-234') */ export declare function transformToKebabCase(input: string): string;