import { GeoprocessingStack } from "./GeoprocessingStack.js"; import { Bucket } from "aws-cdk-lib/aws-s3"; import { CloudFrontWebDistribution } from "aws-cdk-lib/aws-cloudfront"; /** * Create client bucket and deploy client build into it. Serve via Cloudfront */ export declare const createClientResources: (stack: GeoprocessingStack) => { clientBucket: Bucket | undefined; clientDistribution: CloudFrontWebDistribution | undefined; }; export declare const setupClientFunctionAccess: (stack: GeoprocessingStack) => void;