import { StyleOptions } from '../../types'; export interface TextShadowProps { /** * The **`text-shadow`** CSS property adds shadows to text. It accepts a comma-separated list of shadows to be applied to the text and any of its `decorations`. Each shadow is described by some combination of X and Y offsets from the element, blur radius, and color. * * @see https://developer.mozilla.org/docs/Web/CSS/text-shadow */ style$TextShadow: T; } export declare const textShadow: ({ themeProp, }?: Partial, Theme, Extract>>) => (props: import("../../types").WithTheme, Theme, Breakpoints>) => import("../../types").Styles | undefined;