import { App } from "aws-cdk-lib/core"; import type { z } from "zod"; export type CreateStack = (app: App, stackName: string) => void; export declare const deployStack: (region: string, stackName: string, createStack: CreateStack, outputSchema: T) => Promise>;