import { Shadow } from './shadow'; export declare class Border { color: string; borderStyle: string; width: number; shadow: Shadow; borderRadius: number; constructor(border?: Border); /** * this function manipulate the value of Border for tabular report */ ManipulateObjectForTabular(border?: Border): void; }