export declare const randomId: (prefix?: string) => string;
export declare function strippedUuid(): string;
export declare function isEscapedHtml(input: string): boolean;
export declare function getRandomNumberInRange(min: number, max: number): number;
/**
 * Converts a string to kebab-case (lowercase and separated by hyphens).
 * @param input The input string to format.
 * @returns The formatted string.
 */
export declare function toKebabCase(input: string): string;
