import type { NativeWidgetBoxShadowSupport } from "./native-widget-frame-shadow.js"; type NativeReactVersion = { major?: unknown; minor?: unknown; }; export type NativeWidgetBoxShadowSupportInput = { hasFabricUIManager: boolean; platform: { os?: unknown; version?: unknown; }; reactNativeVersion?: NativeReactVersion; }; export declare function toNativeWidgetBoxShadowSupport(input: NativeWidgetBoxShadowSupportInput): NativeWidgetBoxShadowSupport; export declare function resolveNativeWidgetBoxShadowSupport(): NativeWidgetBoxShadowSupport; export {};