export interface InheritOptions { scope: 'thread' | 'chat'; anchor: string; chatId: string; chatType: 'group' | 'p2p'; selfAppId: string; /** Per-bot gate on the RECEIVING (self) bot: when false, this bot never * inherits a sibling bot's workingDir — it falls through to its own repo * card / default instead. Default true (undefined = on). Surfaced in the * dashboard as "bot@bot 同目录拉起". */ botToBotSameDir?: boolean; } export interface InheritedPeer { sessionId: string; larkAppId?: string; workingDir: string; } export declare function findInheritablePeer(opts: InheritOptions): InheritedPeer | null; //# sourceMappingURL=inherit-peer.d.ts.map