/** * Sample missions for the OpenKernel runtime. * * These illustrate the mission → objective → task → worker → provider flow. * They can be executed via the `infinicode mission run` command or * programmatically through the Kernel API. */ import type { MissionInput } from '../kernel/index.js'; export declare const SAMPLE_MISSIONS: Record; export declare function getSampleMission(name: string): MissionInput | undefined; export declare function listSampleMissions(): string[];