import { LayerVersion } from 'aws-cdk-lib/aws-lambda';
import { Construct } from 'constructs';
export interface NextjsLayerProps {
}
/**
 * Lambda layer for Next.js.
 * Contains Sharp 0.30.0.
 */
export declare class NextjsLayer extends LayerVersion {
    constructor(scope: Construct, id: string, props: NextjsLayerProps);
}
