import { Keyset } from "./Keyset";
/**
 * @interface IKeysetProvider
 * @description Interface for a JSON web keyset (JWKS) provider
 */
export interface IKeysetProvider {
/**
  * @description Retrieves an dictionary of named keys
  * @returns {PromiseLike<[Keyset]>} A Task that resolvesss to a dictionary of named keys on completion
  */
    RetrieveKeyset(): Promise<[Keyset]>;
}