/**
 * Injects import statements into source code after 'use client' directive.
 * Handles proper placement of imports in client components.
 */
export declare function injectImportsIntoSource(source: string, importLines: string[]): string;