import { Construct } from 'constructs'; import { BatchAgent, BatchAgentProps } from './batch-agent'; import { LocalStackEndpointOverrides } from '../localstack'; export interface LocalStackBatchAgentProps extends BatchAgentProps { /** * LocalStack endpoint routing configuration for Lambda runtime SDK calls. * * @default { enabled: true } */ readonly localStack?: LocalStackEndpointOverrides; } export declare class LocalStackBatchAgent extends BatchAgent { constructor(scope: Construct, id: string, props: LocalStackBatchAgentProps); protected resolveAgentRuntimeEntry(): string; }