/** * Exposed only for usage by the \@arcgis/stencil-to-lumina codemod. * * @param code * @internal * @experimental */ export function findDeclaredComponent(code: string): readonly [tagName: string, className: string] | undefined; /** * Check if absolute file path looks like a component entrypoint * Looking for .tsx files in src/components/ whose name matches their folder * name. * * @param absolutePath * @param componentsFolder - Absolute path to src/components/ * @experimental */ export function pathIsComponentEntrypoint(absolutePath: string, componentsFolder: string): boolean;