import { SKColor } from '../SKColor'; import { SKContextSettings } from './SKContextSettings'; export type SKShadowItem = { _class: string; isEnabled: boolean; blurRadius: number; spread: number; color: SKColor; offsetX: number; offsetY: number; contextSettings: SKContextSettings; }; export type SKShadows = SKShadowItem[];