import z from 'zod'; import { initOptionsSchema } from '../../commands/init'; export declare const dependsOn: (opts: FullstackAWSProjectOptions) => Promise<{ files: string[]; packages: string[]; }>; export declare const inputs: () => Promise<({ name: string; message: string; schema: z.ZodEffects, "true" | "unknown" | "false", "true" | "unknown" | "false">; } | { name: string; message: string; schema: z.ZodOptional>>; } | { name: string; message: string; schema: z.ZodDefault>>; })[]>; export declare const collectInput: (cmdArgs: z.infer, projectArgs: any) => Promise<{ includeStorage: any; includeDb: any; networkType: any; port: any; }>; export declare const envPull: ({ projectName, stack, }: { projectName: string; stack: string; }) => Promise; export type FullstackAWSProjectOptions = { includeStorage: boolean; includeDb: boolean; networkType: 'public' | 'private'; port: string; }; export default function fullstackAWSProject(inputs: FullstackAWSProjectOptions): Promise; export declare const renderIndex: (inputs: FullstackAWSProjectOptions) => Promise;