import { PrivateKey } from '@hashgraph/sdk';
export type DetectedKeyType = 'ed25519' | 'ecdsa';
export interface KeyDetectionResult {
detectedType: DetectedKeyType;
privateKey: PrivateKey;
}
export declare function detectKeyTypeFromString(privateKeyString: string): KeyDetectionResult;