import { FileSystem } from '../common/fileSystem'; import { Uri } from '../common/uri/uri'; export interface PyTypedInfo { pyTypedPath: Uri; isPartiallyTyped: boolean; } export declare function getPyTypedInfo(fileSystem: FileSystem, dirPath: Uri): PyTypedInfo | undefined; export declare function getPyTypedInfoForPyTypedFile(fileSystem: FileSystem, pyTypedPath: Uri): { pyTypedPath: Uri; isPartiallyTyped: boolean; };