import { IShape } from '../interface'; declare const getPathBySymbol: (attrs: any) => any; declare const createShape: (shapeType: any, param: any, canvas: any) => IShape; declare const createClipShape: (propShapeType: any, param: any, canvas: any) => IShape; declare const isArrowKey: (key: any) => boolean; declare const isCombinedShapeSharedAttr: (key: any) => boolean; declare const getLineTangent: (line: any, dir?: 'start' | 'end') => any[][]; declare const attr: (param1: any, param2: any, target: any) => any; declare const formatAttrValue: (key: any, value: any) => any; export { getPathBySymbol, createShape, isArrowKey, isCombinedShapeSharedAttr, getLineTangent, attr, createClipShape, formatAttrValue };