import { SecretKeyDto } from "./secret-key-dto"; export declare class SecretDto { id: string; encryptedSecret: string; constructor(id: string, encryptedSecret: string); } export declare class UpdateSecretRequestDto { secret: SecretDto; secretKeys: SecretKeyDto[]; groupIds: string[]; constructor(secret: SecretDto, secretKeys: SecretKeyDto[], groupIds: string[]); }