import { type AnimaReferencePaths } from './anima-reference.js'; export interface AnimaRuntimeProfile { displayName: string; referencePaths?: AnimaReferencePaths; role?: string; /** The agent's own Slack identity; when present, the standing prompt tells the agent who it is on Slack. */ slackIdentity?: { handle?: string; userId: string; }; transports: { feishu: boolean; slack: boolean; }; } export declare function buildAnimaRuntimeProfile(profile: AnimaRuntimeProfile): string; //# sourceMappingURL=standing-prompt.d.ts.map