import * as lambda from 'aws-cdk-lib/aws-lambda';
import { Construct } from 'constructs';
export interface SecretManagerWrapperLayerProps {
    /**
     * The architecture for the Lambda function that will use this layer
     */
    readonly lambdaArchitecture?: lambda.Architecture;
}
export declare class SecretManagerWrapperLayer extends Construct {
    readonly layerVersion: lambda.ILayerVersion;
    constructor(scope: Construct, id: string, props?: SecretManagerWrapperLayerProps);
}
