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.ZodDefault>>; })[]>; export declare const collectInput: (cmdArgs: z.infer, projectInputs: any) => Promise<{ includeStorage: boolean | undefined; includeDb: any; port: any; }>; export type FullstackAWSProjectOptions = { includeStorage: boolean; includeDb: boolean; }; export default function fullstackAWSProject(inputs: FullstackAWSProjectOptions): Promise; export declare const renderIndex: (inputs: FullstackAWSProjectOptions) => Promise;