import { PrologClause } from './prolog-clause';
import { StringIntKey } from './string-int-key';
export declare class PrologModule {
    readonly ExportList: StringIntKey[];
    ImportList: Map<string, PrologModule>;
    ClauseList: PrologClause[];
    constructor(exportList?: StringIntKey[] | undefined);
    toString(): string;
    clear(): void;
}
//# sourceMappingURL=prolog-module.d.ts.map