export declare class Agent {
    id: string;
    role: string;
    goal: string;
    backstory: string;
    constructor(params: AgentParams);
    getRolePlaying(): string;
}
export interface AgentParams {
    id: string;
    role: string;
    goal: string;
    backstory: string;
}
//# sourceMappingURL=agent.d.ts.map