import { ILayer } from "@layerhub-io/types"; import { fabric } from "fabric"; import { ShadowOptions } from "../common/interfaces"; export declare function angleToPoint(angle: number, sx: number, sy: number): { x: number; y: number; }; declare const setObjectGradient: (object: fabric.Object, angle: number, colors: string[]) => void; export declare const setObjectShadow: (object: fabric.Object | any, options: ShadowOptions) => void; export declare const updateObjectShadow: (object: fabric.Object | any, options: any) => void; export declare const updateObjectBounds: (element: fabric.Object | any, options: Required) => void; export default setObjectGradient;