import { 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 wrapContentNext(options: WrapOptions, pkg: `${typeof Libraries.GT_NEXT}`, errors: string[], warnings: string[]): Promise<{ filesUpdated: string[]; }>;