import ts from 'typescript';
import type { BoundSourceFile } from '../SourceFile.ts';
export declare const isNotJS: (sourceFile: BoundSourceFile) => boolean;
export declare const isJS: (sourceFile: BoundSourceFile) => boolean;
export declare const isModule: (sourceFile: BoundSourceFile) => boolean;
export declare function hasImportSpecifier(node: ts.Statement, name: string, id?: string): boolean;
