import { Layer } from './types';
/**
 *获取各边宽度
 *
 * @param {*} layer
 * @returns
 * {
    layerBorderTopWidth,
    layerBorderBottomWidth,
    layerBorderLeftWidth,
    layerBorderRightWidth
  }
 */
declare const getBorderWidth: (layer: Layer) => any;
export default getBorderWidth;
