/// <reference types="react" />
import { ShapeConfig } from "konva/types/Shape";
interface BoxProps extends ShapeConfig {
}
/**
 * Create a box with custom top/right/bottom/left colors and widths
 * @param param0
 */
export declare const createBox: ({ x, y, width, height, fill, stroke, strokeLeftColor, strokeTopColor, strokeRightColor, strokeBottomColor, strokeWidth, strokeTopWidth, strokeRightWidth, strokeBottomWidth, strokeLeftWidth, key, }: BoxProps) => JSX.Element;
export {};
