import { BundledCodeZipAsset, type BundledCodeZipAssetProps, type PackageResult } from './BundledCodeZipAsset'; import { Construct } from 'constructs'; /** * CDK construct that packages Python code into a zip and uploads to the bootstrap bucket. * * Uses the lib packager which handles: * - Installing dependencies via uv * - Cross-platform compilation for ARM64 Lambda/AgentCore runtime * - Creating the final zip artifact */ export declare class PythonBundledCodeZipAsset extends BundledCodeZipAsset { constructor(scope: Construct, id: string, props: BundledCodeZipAssetProps); protected packageCode(): PackageResult; } //# sourceMappingURL=PythonBundledCodeZipAsset.d.ts.map