import { LLMMessage } from "../types/llm.mjs";
import "../types/index.mjs";

//#region src/chat/EditableMessageList/type.d.ts
interface EditableMessageListProps {
  dataSources: LLMMessage[];
  disabled?: boolean;
  onChange?: (chatMessages: LLMMessage[]) => void;
  texts?: {
    addProps?: string;
    delete?: string;
    input?: string;
    inputPlaceholder?: string;
    output?: string;
    outputPlaceholder?: string;
    system?: string;
  };
}
//#endregion
export { EditableMessageListProps };
//# sourceMappingURL=type.d.mts.map