export interface EncryptionKey {
    key: CryptoKey;
}
export declare class KeyDerivationService {
    deriveKey(prfOutput: Uint8Array, salt: Uint8Array): Promise<CryptoKey>;
}
