export interface RetrievedChunk {
    heading: string;
    content: string;
    score?: number;
}
export interface OmegaOptions {
    dim?: number;
    features?: number;
    sigma?: number;
    rounds?: number;
    topSentences?: number;
    personality?: "neutral" | "teacher" | "scientist";
}
export declare function omegaComposeAnswer(question: string, items: RetrievedChunk[], opts?: OmegaOptions): Promise<string>;
//# sourceMappingURL=Omega.d.ts.map