export type HolLedgerChallenge = { challengeId: string; message: string; expiresAt: string; }; export type HolLedgerVerifyResult = { key: string; apiKey: { id: string; prefix: string; lastFour: string; ownerType: 'ledger'; label?: string; createdAt: string; lastUsedAt?: string | null; ledgerAccountId?: string; ledgerNetwork?: string; ledgerNetworkCanonical?: string; }; accountId: string; network: string; networkCanonical?: string; }; export declare function createHolLedgerChallenge(input: { accountId: string; }): Promise; export declare function verifyHolLedgerChallenge(input: { accountId: string; challengeId: string; signature: string; signatureKind?: 'raw' | 'map' | 'evm'; publicKey?: string; expiresInMinutes?: number; }): Promise; //# sourceMappingURL=holLedgerAuth.d.ts.map