import { C as CofheInputConfig, a as CofheConfig, b as CofheClient } from './clientTypes-CEno_BEf.js'; import 'viem'; import './types-C07FK-cL.js'; import 'zod'; import './permit-DnVMDT5h.js'; import 'zustand/vanilla'; /** * Creates a CoFHE configuration for Node.js with filesystem storage as default * @param config - The CoFHE input configuration (fheKeyStorage will default to filesystem if not provided) * @returns The CoFHE configuration with Node.js defaults applied */ declare function createCofheConfig(config: CofheInputConfig): CofheConfig; /** * Creates a CoFHE client instance for Node.js with node-tfhe automatically configured * TFHE will be initialized automatically on first encryption - no manual setup required * @param config - The CoFHE configuration (use createCofheConfig to create with Node.js defaults) * @returns The CoFHE client instance */ declare function createCofheClient(config: CofheConfig): CofheClient; export { createCofheClient, createCofheConfig };