import { z } from 'zod'; import { IBaseParsedArgs } from 'argv-utils'; export type IEnvironment = 'development' | 'staging' | 'production'; /** * Module Args * The args that can bt passed to the sw-builder CLI */ export interface IModuleArgs extends IBaseParsedArgs { config?: string; environment?: IEnvironment; } /** * Template Name * The list of templates supported by the sw-builder. */ export declare const TemplateNameSchema: z.ZodEnum<{ base: "base"; "firebase-fcm": "firebase-fcm"; }>; export type ITemplateName = z.infer;