Whether in a declaration file or a regular TypeScript file, imports are already
declared, so it doesn't make sense to add the declare
keyword to the import:
declare import * as ts from "typescript";
Fix: Remove declare keyword.
Remove the declare keyword:
import * as ts from "typescript";