import type { GcpKmsRsaPssProvider } from './GcpKmsRsaPssProvider';
import { RsaPssPrivateKey } from '../PrivateKey';
import { HashingAlgorithm } from '../algorithms';
export declare class GcpKmsRsaPssPrivateKey extends RsaPssPrivateKey<GcpKmsRsaPssProvider> {
    kmsKeyVersionPath: string;
    constructor(kmsKeyVersionPath: string, hashingAlgorithm: HashingAlgorithm, provider: GcpKmsRsaPssProvider);
}
