import sharp from 'sharp'; import type { RGBA } from '../colors/types.js'; interface Options { borderWidth: number; borderHeight: number; borderColor: RGBA; cornerRadius: number; imageWidth: number; imageHeight: number; finalizePipeline?: boolean; } export declare const handleImageEdges: (image: sharp.Sharp, { borderWidth, borderHeight, borderColor, imageWidth, imageHeight, cornerRadius, finalizePipeline }: Options) => Promise; export {};