import { Construct } from "constructs"; interface GenerateSecretProps { /** * Nonce to force secret update. */ nonce?: string; } /** * Generate a secret to be used in other parts of the deployment. */ export declare class GenerateSecret extends Construct { readonly value: string; constructor(scope: Construct, id: string, props?: GenerateSecretProps); } export {};