import { Curve, DerivationAlgorithm, QRHardwareCallVersion } from '@keystonehq/bc-ur-registry'; import { type UR } from '@ngraveio/bc-ur'; export { Curve, DerivationAlgorithm, QRHardwareCallVersion }; export interface KeySchema { path: string; curve?: Curve; algo?: DerivationAlgorithm; chainType?: String; } export interface KeyDerivationCallArgs { schemas: KeySchema[]; origin?: string; version?: QRHardwareCallVersion; } export declare const generateKeyDerivationCall: ({ schemas, origin, version, }: KeyDerivationCallArgs) => UR;