import { Border, BorderOptions } from 'sketch-constructor'; import { BorderStyleProperty } from 'csstype'; /** * 获取边框 * @param borders 边框 * @param borderOptions 边框配置 */ export declare function getBorder(borders: Border[] | undefined, borderOptions: BorderOptions): { width: string; style: string; color: string; } | undefined; export interface IBorderObj { width: string; style: BorderStyleProperty; color: string; }