import { LLMAction } from "../model/llm";
export type ParseActionResult = {
    ok: true;
    action: LLMAction;
} | {
    ok: false;
    error: string;
};
export declare const parseLLMAction: (raw: unknown) => ParseActionResult;
