/** * Inscriptions Module * * Skills for creating inscriptions. */ import type { Skill } from "../skills/types"; export interface InscribeRequest { /** Base64 encoded content */ base64Content: string; /** Content type (MIME type) */ contentType: string; /** Optional MAP metadata */ map?: Record; } export interface InscribeResponse { txid?: string; rawtx?: string; error?: string; } /** * Create an inscription. */ export declare const inscribe: Skill; /** All inscription skills for registry */ export declare const inscriptionsSkills: Skill[];