import type { OrgXClient } from "../../api.js"; import type { KickoffContext, KickoffContextRequest } from "../../types.js"; export declare function fetchKickoffContextSafe(client: OrgXClient, payload: KickoffContextRequest): Promise; export declare function renderKickoffMessage(input: { baseMessage: string; kickoff: KickoffContext | null; domain: string | null; requiredSkills: string[]; }): { message: string; contextHash: string | null; };