import { StyleOptions } from '../../types'; export interface BoxShadowProps { /** * The **`box-shadow`** CSS property adds shadow effects around an element's frame. You can set multiple effects separated by commas. A box shadow is described by X and Y offsets relative to the element, blur and spread radii, and color. * * @see https://developer.mozilla.org/docs/Web/CSS/box-shadow */ style$BoxShadow: T; } export declare const boxShadow: ({ themeProp, }?: Partial, Theme, Extract>>) => (props: import("../../types").WithTheme, Theme, Breakpoints>) => import("../../types").Styles | undefined;