/**
 * 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.
 *
 * @flow strict
 */

/**
 * 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 export default function normalizeZeroDimensions(
  ast: PostCSSValueAST,
  key: mixed,
): PostCSSValueAST;
