import { World } from ".";
export declare class System {
executor: Function;
constructor(executor: Function);
execute(world: World): void;
}