/** * HMAC-SHA256 서명 헤더를 생성합니다. * * 서명 대상: `METHOD|PATH|TIMESTAMP|NONCE|BODY` * * @returns `X-API-Key`, `X-Timestamp`, `X-Nonce`, `X-Signature` 헤더 객체 */ export declare function buildHmacHeaders(method: string, path: string, bodyBytes: Uint8Array, apiKey: string, hmacSecret: string): Record;