export declare const LATEST_VERSION = "latest"; export declare const DEPLOY_FILE = "schema.graphql"; export declare const FAKER_DEPLOY_FILE = "faker.json"; export declare const ENDPOINT_CONFIGURATION_FILE = "cloudConfig.json"; export declare const JAMSTACK_CONFIG_FILE = "jamstack.json"; export declare const IS_VERSION_FILE_REGEX: RegExp; export declare const SLACK_JOIN = "https://discord.gg/wVcZdmd"; export declare const CLOUD_FOLDERS: { readonly nocode: "nocode"; readonly forms: "forms"; readonly widgets: "widgets"; readonly restproxy: "restproxy"; readonly webhooks: "webhooks"; readonly gql: "gql"; readonly models: "models"; readonly microserviceJs: "microservice/js"; readonly microserviceGo: "microservice/go"; readonly microservices_deployment: "microservices_deployment"; readonly frontend: "frontend"; readonly jamstack: "jamstack"; readonly gql_tests: "gql_tests"; readonly holygrail: "holygrail"; }; export declare const VERSIONED_FILES: (version: string) => { readonly schema: `schema-${string}.graphql`; readonly schemaConfig: `schema-${string}.json`; readonly libraries: `stitch-${string}.graphql`; }; export declare const COMMON_FILES: (v: string) => { version: `schema-${string}.json`; code: `schema-${string}.graphql`; libraries: `stitch-${string}.graphql`; jamstack: string; faker: string; hosts: string; stucco: string; packageJSON: string; }; export declare const MICROSERVICE_DEPLOYMENT_FILE = "function.zip"; export declare const STUCCO_FILE = "stucco.json"; export declare const PACKAGE_JSON_FILE = "package.json"; export declare const jamstackDeploymentUrl: (projectId: string) => string; export declare const fileInCloudFolder: (k: keyof typeof CLOUD_FOLDERS) => (fileName: string) => string;