import { type ViewStyle } from "react-native"; export type ShadowLevel = "none" | "sm" | "DEFAULT" | "md" | "lg" | "xl"; /** The elevation preset for a level (defaults to the standard `shadow`). */ export declare function shadow(level?: ShadowLevel): ViewStyle; /** * A one-off drop shadow for components that need a shade off the preset scale. Returns * the platform-correct `shadow*` props (+ optional Android `elevation`) on native, and * the equivalent `boxShadow` string on web (so react-native-web does not warn). The * color must be a solid 6-digit hex; the opacity is applied to it. */ export declare function customShadow(opts: { color?: string; offsetY?: number; radius?: number; opacity?: number; elevation?: number; }): ViewStyle; //# sourceMappingURL=shadow.d.ts.map