/** * @param {KeyInput | KeyInput[] | KeyResolverFn} keyish * @param {Record} header * @param {string} alg * @returns {Promise} */ export function resolveKey(keyish: KeyInput | KeyInput[] | KeyResolverFn, header: Record, alg: string): Promise; export type KeyObj = any; export type KeyInput = import("./keys.js").KeyInput; export type KeyResolverFn = (header: Record) => KeyInput | Promise;