/** * SIWE Auto-Provisioning * * Uses the local wallet to authenticate via Sign-In With Ethereum (SIWE) * and automatically create an API key, saving it to ~/.conway/config.json. */ interface ProvisionResult { apiKey: string; walletAddress: string; keyPrefix: string; } /** * Load API key from ~/.conway/config.json if it exists */ export declare function loadApiKeyFromConfig(): string | null; /** * Run the full SIWE provisioning flow: * 1. Load wallet * 2. Get nonce from API * 3. Sign SIWE message * 4. Verify signature → get JWT * 5. Create API key * 6. Save to config.json */ export declare function provision(): Promise; export {}; //# sourceMappingURL=provision.d.ts.map