import { Construct } from 'constructs'; import { BedrockDocumentProcessing, BedrockDocumentProcessingProps } from './bedrock-document-processing'; import { LocalStackEndpointOverrides } from '../framework/localstack'; export interface LocalStackBedrockDocumentProcessingProps extends BedrockDocumentProcessingProps { /** * LocalStack endpoint routing configuration for Lambda runtime SDK calls. * * @default { enabled: true } */ readonly localStack?: LocalStackEndpointOverrides; } export declare class LocalStackBedrockDocumentProcessing extends BedrockDocumentProcessing { constructor(scope: Construct, id: string, props: LocalStackBedrockDocumentProcessingProps); protected resolveBedrockInvokeEntry(): string; private applyLocalStackEnvironment; }