/** * 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. * * */ /** * Remove units in zero values, except when required: in angles, timings, fractions, and percentages, * in which case make them consistent 0deg, 0s, 0fr, and 0%. */ declare function normalizeZeroDimensions( ast: PostCSSValueAST, key: unknown, ): PostCSSValueAST; export default normalizeZeroDimensions;