import * as CSS from "csstype"; import { Config } from "../utils/prop-config"; import { Token } from "../utils"; export declare const effect: Config; /** * Types for box and text shadow properties */ export interface EffectProps { /** * The `box-shadow` property */ boxShadow?: Token; /** * The `box-shadow` property */ shadow?: Token; /** * The `mix-blend-mode` property */ mixBlendMode?: Token; /** * The `blend-mode` property */ blendMode?: Token; /** * The CSS `background-blend-mode` property */ backgroundBlendMode?: Token; /** * The CSS `background-blend-mode` property */ bgBlendMode?: Token; /** * The CSS `opacity` property */ opacity?: Token; }