/** * Authentication utilities for the Kalshi JavaScript SDK. */ export declare class AuthManager { private apiKeyId; private privateKey; constructor(apiKeyId: string, privateKeyData: string); private loadPrivateKey; private signMessage; getAuthHeaders(method: string, path: string): Record; getApiKeyId(): string; }