/** * 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, TStyleValue } from '../common-types'; export declare function getExpandedKeys( options: StyleXOptions, ): ReadonlyArray; declare function flatMapExpandedShorthands( objEntry: Readonly<[string, TStyleValue]>, options: Readonly<{ styleResolution: StyleXOptions['styleResolution']; propertyValidationMode?: StyleXOptions['propertyValidationMode']; }>, ): ReadonlyArray<[string, TStyleValue]>; export default flatMapExpandedShorthands;