export interface Exclusion { from: number; to: number; ignore?: boolean; } export interface Filter { from?: number; to?: number; exclusions?: Exclusion[]; } export interface RectAnnotation { type: string; position: Array<{ x: number | string; y: string; }>; strokeWidth: number; fillColor: string; } /** * Get filter annotations * @param filter - Filter with from, to, and exclusions * @returns Array of rectangle annotations */ export declare function getFilterAnnotations(filter?: Filter): RectAnnotation[]; //# sourceMappingURL=getFilterAnnotations.d.ts.map