ExtractDeepAgentConfig: T extends __type Config extends DeepAgentTypeConfigLike Config : never : Extract the DeepAgentTypeConfig from a DeepAgent-like type.
const agent = createDeepAgent({ subagents: [...] });
type Config = ExtractDeepAgentConfig<typeof agent>;
// Config includes { Subagents: [...] }