import { MoveOpts, MoveTarget } from '../';
/**
 * Generates a path with PathFinder.
 */
export declare function generatePath(origin: RoomPosition, targets: MoveTarget[], opts?: MoveOpts): RoomPosition[] | undefined;
