import type { KernelState } from '@xemahq/contracts/kernel-state'; import { type EtcdKernelStateOptions } from './etcd-kernel-state'; import { KernelStateProfile } from './profile'; export interface CreateKernelStateOptions { profile: KernelStateProfile; etcd?: EtcdKernelStateOptions; } export declare function createKernelState(opts: CreateKernelStateOptions): KernelState; export declare const KERNEL_STATE_KEYSPACE_PREFIX_ENV = "XEMA_KERNEL_STATE_KEYSPACE_PREFIX"; //# sourceMappingURL=factory.d.ts.map