import type * as Keystore from '../Keystore.js';
/**
 * Pure-JS P-256 keystore. The private key is held as hex in the handle and
 * signing runs in JavaScript — at-rest protection is the host app's storage
 * adapter, and the key is readable by anything with JS execution. Prefer
 * `webCryptoP256` (or a hardware keystore) where a WebCrypto
 * implementation is available; this exists chiefly as an adapter default
 * for environments without one.
 */
export declare function p256(): Keystore.Keystore;
//# sourceMappingURL=p256.d.ts.map