import { z } from "zod"; import type { BreakpointBackend } from "../../backend.js"; import type { Breakpoint } from "../../types.js"; export declare const checkBreakpointStatusDescription: string; export declare const checkBreakpointStatusParams: { breakpointId: z.ZodString; backend: z.ZodOptional; breakpointsDir: z.ZodOptional; }; export interface CheckBreakpointStatusParams { breakpointId: string; backend?: string; breakpointsDir?: string; } export declare function handleCheckBreakpointStatus(params: CheckBreakpointStatusParams, backend: BreakpointBackend): Promise; //# sourceMappingURL=check-status.d.ts.map