import { BeanStub } from '../core/beanStub'; import type { AiProfile, AnyProfileDefinition } from './types'; export declare class AiProfileRegistry extends BeanStub { beanName: "aiProfileRegistry"; private readonly profiles; getDefinition(type: string): AnyProfileDefinition | undefined; resolveProfile(type: string, isChild: boolean, params?: Record, lenient?: boolean): AiProfile | undefined; }