import { type EnforceMaxLength, type SecretMaxLength } from './credentialAttestation.js';
import { Wallet } from 'ethers';
export declare function signSecretWithEthWallet<FixedString extends string>(secret: EnforceMaxLength<FixedString, SecretMaxLength>, ethWallet: Wallet): Promise<string>;
