/** * Generates a deterministic symbol name from a string input. * * Qwik uses symbols internally for its qrl system. This utility * creates Qwik-compatible symbol names to ensure proper integration * with Qwik's lazy-loading and optimization features. * * @param {string} input - The string to generate a symbol name from * @returns {string} A symbol name in the format "s_" followed by 11 hex characters * * @example * ```ts * const symbolName = generateSymbolName("MyComponent"); * // Returns something like "s_a1b2c3d4e5f" * ``` */ export declare function createSymbolName(input: string): string;