/** * 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. * * */ export type TextShadowStyle = Readonly<{ textShadowColor: string | null; textShadowOffset: Readonly<{ height: number | string; width: number | string; }>; textShadowRadius: number | string; }>; export declare function parseTextShadow(str: string): TextShadowStyle;