/** * @example * ``` * import {shadowTransitions} from 'react-styled-hover'; * * let StyledButton = styled.button` * ${shadowTransitions.hvrFade} * ...other styles * ` * ``` */ declare const shadowTransitions: { hvrGlow: string; hvrShadow: string; hvrGrowShadow: string; hvrBoxShadowOutset: string; hvrBoxShadowInset: string; hvrFloatShadow: string; hvrShadowRadial: string; }; export default shadowTransitions;