import { promptSchemaByKind } from './schema'; import type { PromptEnvelope } from './types'; type PromptKind = keyof typeof promptSchemaByKind; export declare function hashInputs(inputs: unknown): string; export declare function hashPrompt(prompt: PromptEnvelope): string; export declare function validatePrompt(kind: K, payload: unknown): PromptEnvelope; export declare function renderPromptSummary(prompt: PromptEnvelope): string; export { promptSchemaByKind } from './schema'; export type { PromptEnvelope } from './types';