Try to add this folder within src directory.
--src
---types
----remote-app.ts.d (can give any name)
In that file, define the type for this component
declare module 'remote_finances/next-remote-component' {
const Component: React.FC;
export default Component;
}