//#region src/writeContentDeclaration/detectExportedComponentName.d.ts /** * Attempt to detect an exported React component name in the file text. * Looks for patterns like: * - export const MyComponent = ... * - export function MyComponent(...) * - export default function MyComponent(...) */ export declare const detectExportedComponentName: (fileText: string) => string | null; //#endregion //# sourceMappingURL=detectExportedComponentName.d.ts.map