import * as CSS from "csstype"; import { ResponsiveValue } from "../utils"; /** * Types for box and text shadow properties */ export interface ShadowProps { /** * The `box-shadow` property */ boxShadow?: ResponsiveValue; /** * The `box-shadow` property */ shadow?: ResponsiveValue; /** * The `text-shadow` property */ textShadow?: ResponsiveValue; } export declare const shadow: import("../core").Parser; export declare const shadowParser: { (props: Record): Record; config: import("../core").PropConfig; propNames: string[]; cache: Map; };