import type { ChartMark, ChartMarkMotionOptions } from './types.js'; export interface FrameOptions extends ChartMarkMotionOptions { id?: string; fill?: string; fillOpacity?: number; stroke?: string; strokeOpacity?: number; strokeWidth?: number; inset?: number; radius?: number; } /** Draws a background or border around the resolved inner chart bounds. */ export declare function frame(options?: FrameOptions): ChartMark;