import type { UserPreferences } from '@ms-cloudpack/common-types'; /** * File name constant for the user defined app config JSON. */ export declare const appConfigFileName = "cloudpack.config.json"; /** * File name constants for the user defined app config JS. */ export declare const appConfigFileNamesJS: readonly ["cloudpack.config.js", "cloudpack.config.mjs", "cloudpack.config.cjs"]; /** * Glob pattern for matching any Cloudpack config file (basename only). * Use with appropriate prefixes like `./` as needed. * Matches: cloudpack.config.json, cloudpack.config.js, cloudpack.config.mjs, cloudpack.config.cjs */ export declare const appConfigFileGlob = "cloudpack.config.{json,js,mjs,cjs}"; export declare const generatedConfigFileName = "cloudpack.generated.json"; export declare const userPreferencesFileName = ".cloudpack.preferences.json"; /** * Object with descriptions of each user preference key. */ export declare const allUserPreferences: Readonly>; /** unpkg URL for the GeneratedConfig JSON schema */ export declare const generatedAppConfigSchemaUrl = "https://unpkg.com/@ms-cloudpack/cli/schema/GeneratedConfig.json"; /** unpkg URL for the AppConfig JSON schema */ export declare const appConfigSchemaUrl = "https://unpkg.com/@ms-cloudpack/cli/schema/AppConfig.json"; /** unpkg URL for the UserPreferences JSON schema */ export declare const userPreferencesSchemaUrl = "https://unpkg.com/@ms-cloudpack/cli/schema/UserPreferences.json"; //# sourceMappingURL=constants.d.ts.map