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