export declare const Constants: { PRIVATE_NAME_PREFIX: string; CONFIG_NAME: string; TAB_TEXT: string; STAGE: { readonly development: "development"; readonly production: "production"; }; }; export declare const createMutableRef: (value?: T | undefined) => { current: T | undefined; }; export declare const PRETTIER_CONFIG: { readonly semi: false; readonly parser: "babel-ts"; readonly singleQuote: true; readonly trailingComma: "all"; }; export declare const getCurrentDirectory: () => string;