/**
 * Define the options for the key store
 */
export default class KeyStoreOptions {
    constructor(options?: any);
    /**
     * True if only public keys are requested
     */
    publicKeyOnly: boolean;
    /**
     * True if only the latest version of they is wanted
     */
    latestVersion?: boolean;
}
