import type { LLMManage } from '../../core/llm';
import type { ILLMOptions } from '../../types';
import { AtomName } from '../../types';
import { Schedule } from '../../schedule';
export declare const getDataInsightSchedule: (llm: LLMManage, options: ILLMOptions) => Schedule<(AtomName.DATA_INSIGHT | AtomName.SPEC_INSIGHT)[]>;
