import { type OperationRegistry, type RegistrableOperation } from './types.ts'; /** * Build an immutable registry. Throws on duplicate names, invalid names, * non-object input schemas, and unsafe top-level schema keys. */ export declare function createOperationRegistry(operations: ReadonlyArray): OperationRegistry;