export declare enum ProjectErrorType {
    MissingRootDir = 0,
    MissingOutDir = 1,
    MissingPartitionDir = 2,
    MissingSourceFile = 3,
    ImportNonModuleScript = 4,
    InvalidImportAccess = 5,
    GetImportPathFail1 = 6,
    GetImportPathFail2 = 7,
    GetImportPathFail3 = 8,
    NoRojoData = 9,
    UnexpectedExtensionType = 10,
    BadTsConfig = 11,
    BadRbxTypes = 12,
    BadRojoInclude = 13
}
export declare class ProjectError extends Error {
    readonly type: ProjectErrorType;
    constructor(message: string, type: ProjectErrorType);
}
