export interface StoreValidatorResult { ok: boolean; /** Raw error output from store-cli. Present when ok=false. */ reason: string; /** Enhanced message with remediation hints. Present when ok=false. */ remediation: string; } /** * Validate a store entity payload by spawning `store-cli.cjs validate`. * * @param entity Entity type: "task" | "sprint" | "bug" | "event" | … * @param payload The raw payload (will be JSON.stringify'd if object; passed as-is if string). * @param forgeRoot Absolute path to the Forge plugin root — locates store-cli.cjs. * @returns `{ ok: true, reason: "" }` on success, `{ ok: false, reason: }` on failure. */ export declare function validateStoreCLIPayload(entity: string, payload: unknown, forgeRoot: string): StoreValidatorResult;