import { Config, GlobalConfig } from "./types";
export declare const isDevMode: boolean;
export declare const railwayUrl: string;
export declare const backboardUrl: string;
export declare const railwayPath: string;
export declare const paths: {
    railwayPath: string;
    configFilePath: string;
    gitIgnoreFilePath: string;
    railwayEnvFilePath: string;
    nodeEnvFilePath: string;
};
export declare const configExists: () => boolean;
export declare const getConfig: () => Config;
export declare const createConfig: (projectId: string, environmentId: string, force?: boolean | undefined) => void;
export declare const useEnvironment: (envId: string) => void;
export declare const loginWebpage: (port: number, code: string) => string;
export declare const globalConfigDir: string;
export declare const globalConfigFile: string;
export declare const getGlobalConfig: () => GlobalConfig;
export declare const saveGlobalConfig: (config: GlobalConfig) => void;
export declare const removeTokenFromGlobalConfig: () => void;
export declare const railwayProductionToken: string | undefined;
