import { NodejsFunction } from 'aws-cdk-lib/aws-lambda-nodejs'; import { Construct } from 'constructs'; export interface FetchLambdaProps { readonly sessionInitializationUrl: string; readonly topicArn: string; readonly indexOfRenditions: number; } export declare class FetchLambda extends Construct { readonly func: NodejsFunction; constructor(scope: Construct, id: string, props: FetchLambdaProps); }