import { LedgerJWTPayload } from "../../../../types/src"; export declare function signJWT(payload: LedgerJWTPayload, secret: string, kid: string): Promise; export declare function getJWTProtectedHeader(jwt: string): Record; export declare function verifyJWT(jwt: string, publicKey: string, keyFormat?: string): Promise;