import { ObjectType } from "../targets";
import { CommandParameters, CompileAttribute } from "./environment";
export declare class iProject {
    includePaths?: string[];
    compiles?: CompileAttribute;
    objectAttributes?: {
        [object: string]: CommandParameters;
    };
    binders?: string[];
    constructor();
    getCompileDataForType(type: ObjectType): import("./environment").CompileData;
    getCompileDataForSource(relativePath: string): import("./environment").CompileData;
    applySettings(input: Partial<iProject>): void;
}
