import { Plugin, Schema } from '@pdfme/common'; interface ShapeSchema extends Schema { type: 'ellipse' | 'rectangle'; borderWidth: number; borderColor: string; color: string; radius?: number; } export declare const rectangle: Plugin; export declare const ellipse: Plugin; export {};