/** * Markers View * * Full view for managing debug markers. * * @since v1.33.2 */ import type { DebugMarker } from '../debug/debug-types.js'; interface MarkersViewProps { markers: DebugMarker[]; onResolve: (markerId: string) => void; onDelete: (markerId: string) => void; onExportContext: () => void; } /** * Full markers management view */ export declare function MarkersView({ markers, onResolve, onDelete, onExportContext }: MarkersViewProps): import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=MarkersView.d.ts.map