#!/usr/bin/env node import { type CommandDef } from 'citty'; export declare const main: CommandDef<{ readonly name: { readonly type: 'string'; readonly description: 'Project name (prompted if omitted)'; readonly required: false; }; readonly region: { readonly type: "string"; readonly description: "Nylas region (us or eu)"; readonly default: "us"; }; readonly 'site-name': { readonly type: "string"; readonly description: "Name shown in the deployed app"; }; }>; //# sourceMappingURL=index.d.ts.map