import type { RequestFn } from "../http.js"; import type { Check, CheckStats, CreateCheckInput, PaginatedResponse, PaginationParams, UpdateCheckInput } from "../types.js"; export declare class ChecksClient { private readonly request; constructor(request: RequestFn); list(projectId: string, params?: PaginationParams): Promise>; get(id: string): Promise; create(projectId: string, input: CreateCheckInput): Promise; update(id: string, input: UpdateCheckInput): Promise; delete(id: string): Promise; pause(id: string): Promise; resume(id: string): Promise; stats(id: string, days?: number): Promise; } //# sourceMappingURL=checks.d.ts.map