import { PlaitBoard } from '@plait/core'; import { MindElement, MindElementShape } from '../../interfaces/element'; import { StrokeStyle } from '@plait/common'; export declare const getStrokeColorByElement: (board: PlaitBoard, element: MindElement) => any; export declare const getStrokeStyleByElement: (board: PlaitBoard, element: MindElement) => StrokeStyle; export declare const getStrokeWidthByElement: (board: PlaitBoard, element: MindElement) => number; export declare const getFillByElement: (board: PlaitBoard, element: MindElement) => string; export declare const getShapeByElement: (board: PlaitBoard, element: MindElement) => MindElementShape;