import { SupportedFrameworks, WrapOptions } from '../../types/index.js'; import { Libraries } from '../../types/libraries.js'; /** * Wraps all JSX elements in the src directory with a tag, with unique ids. * - Ignores pure strings * * @param options - The options object * @returns An object containing the updates and errors */ export declare function wrapContentReact(options: WrapOptions, pkg: `${typeof Libraries.GT_REACT}`, framework: SupportedFrameworks, errors: string[], warnings: string[]): Promise<{ filesUpdated: string[]; }>;