/**
 * Shared types for the portfolio system
 */
export declare enum ElementType {
    PERSONA = "personas",
    SKILL = "skills",
    TEMPLATE = "templates",
    AGENT = "agents",
    MEMORY = "memories",
    ENSEMBLE = "ensembles"
}
export interface PortfolioConfig {
    baseDir?: string;
    createIfMissing?: boolean;
    migrateExisting?: boolean;
}
export { PortfolioConfig as PortfolioConfiguration };
//# sourceMappingURL=types.d.ts.map