import React from 'react'; type KeychainAction = 'list' | 'get' | 'set' | 'delete' | 'rotate' | 'migrate'; interface KeychainProps { action: KeychainAction; credKey?: string; } export declare const Keychain: React.FC; export {};