import { type Program } from "typescript";
export declare const SCOPE_TS_FILE_NAME = ".scope.ts";
export declare const SCOPE_JS_FILE_NAME = ".scope.js";
export declare const checkIsImportable: ({ tsProgram, importPath, exportPath, exportName, }: {
    tsProgram: Program;
    importPath: string | undefined;
    exportPath: string | undefined;
    exportName?: string;
}) => boolean;
