import { PluginLogger, PluginCreateOptions, KeyGeneratorPlugin } from "reg-suit-interface";
export interface PluginConfig {
    expectedKey: string;
    actualKey: string;
}
export declare class SimpleKeygenPlugin implements KeyGeneratorPlugin<PluginConfig> {
    _logger: PluginLogger;
    _options: PluginConfig;
    init(config: PluginCreateOptions<PluginConfig>): void;
    getExpectedKey(): Promise<string>;
    getActualKey(): Promise<string>;
}
