import { CommonStyleProps } from '../types'; import { BlendStyleProperties } from '../styleTransformers/transformBlendProperties'; export declare const useEffectStyle: (style: Partial, params: CommonStyleProps) => { effectStyleId: any; opacity?: number; blendMode?: import("../styleTransformers/transformBlendProperties").CSSBlendMode; shadows?: import("../styleTransformers/transformBlendProperties").ShadowProperties[]; blurs?: import("../styleTransformers/transformBlendProperties").BlurProperties[]; shadowColor?: string; shadowOffset?: { width: number; height: number; }; shadowOpacity?: number; shadowRadius?: number; shadowSpread?: number; shadowType?: "DROP_SHADOW" | "INNER_SHADOW"; blurRadius?: number; blurType?: "LAYER_BLUR" | "BACKGROUND_BLUR"; } | { opacity?: number; blendMode?: import("../styleTransformers/transformBlendProperties").CSSBlendMode; shadows?: import("../styleTransformers/transformBlendProperties").ShadowProperties[]; blurs?: import("../styleTransformers/transformBlendProperties").BlurProperties[]; effectStyleId?: string; shadowColor?: string; shadowOffset?: { width: number; height: number; }; shadowOpacity?: number; shadowRadius?: number; shadowSpread?: number; shadowType?: "DROP_SHADOW" | "INNER_SHADOW"; blurRadius?: number; blurType?: "LAYER_BLUR" | "BACKGROUND_BLUR"; };