export declare class CodeFileLoader { private onCompleted; private onError; constructor(filePath: string, onCompleted?: Function, onError?: Function); loadFromFile(filePath: string): void; parseCode(code: string): void; }