/** * 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 { StyleXOptions } from '../common-types'; /** * Convert a CSS value in JS to the final CSS string value */ declare function transformValue( key: string, rawValue: string | number, options: StyleXOptions, ): string; export default transformValue; export declare function getNumberSuffix(key: string): string; export declare const timeUnits: Set; export declare type timeUnits = typeof timeUnits; export declare const lengthUnits: Set; export declare type lengthUnits = typeof lengthUnits;