#!/usr/bin/env node import { Command } from 'commander'; export declare function createConsciousnessCommand(): Command; export declare const consciousnessTools: { processInput: (input: number[]) => Promise; measurePhi: () => Promise; getAttention: () => Promise; temporalBinding: () => Promise; benchmark: (iterations: number) => Promise; };