import { CSSValue, ResponsiveStyle } from "./types"; export type ShadowProps = Partial<{ boxShadow: CSSValue<"boxShadow">; textShadow: CSSValue<"textShadow">; }>; export declare const shadow: (props: ShadowProps) => ResponsiveStyle;