/** * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. * * */ import type { CompiledNamespaces } from '../shared'; import StateManager from './state-manager'; export declare function namespaceToDevClassName( namespace: string, varName: null | string, filename: string, ): string; export declare function injectDevClassNames( obj: CompiledNamespaces, varName: null | string, state: StateManager, ): CompiledNamespaces; export declare function convertToTestStyles( obj: CompiledNamespaces, varName: null | string, state: StateManager, ): CompiledNamespaces;