import type { RsaKeyGeneratorWasm } from '../wasm';
import { KeyGenerator } from './key-generator';
export declare class RsaKeyGenerator extends KeyGenerator<RsaKeyGeneratorWasm> {
    private _bits;
    private _primes;
    constructor(bits?: number, primes?: number);
    protected ensureContextAsync(): Promise<void>;
}
