/** Native command and permission artifact renderers. */ import type { ArtifactIntent, InstallScope, PlatformAdapter } from '../types.js'; export interface CommandAlias { name: string; kind: 'skill' | 'cli'; invoke: string; } export declare const COMMAND_ALIASES: readonly CommandAlias[]; /** Render native aliases only after the adapter's capability has been promoted. */ export declare function renderCommands(adapter: PlatformAdapter, scope: InstallScope): ArtifactIntent[]; /** Render a permission policy only for an evidence-verified native surface. */ export declare function renderPermissions(adapter: PlatformAdapter, scope: InstallScope): ArtifactIntent[]; //# sourceMappingURL=commands.d.ts.map