import type * as CEM from 'custom-elements-manifest'; /** * Given a custom elements manifest (or a path to its file), * generate a suite of react wrapper components * @param customElementsManifestOrPathOrURL manifest object; or string or url path * @param outDirPathOrURL directory to write wrapper components to * @param packageName npm package name of the manifest * @param elPrefix element tag prefix e.g. `pf` * @param classPrefix e.g. `Pf` */ export declare function generateReactWrappers(customElementsManifestOrPathOrURL: CEM.Package | string | URL, outDirPathOrURL: string | URL, packageName?: string, elPrefix?: string, classPrefix?: string): Promise;