import type * as Vital from "../../api/index.js"; import * as core from "../../core/index.js"; import type * as serializers from "../index.js"; import { BulkOpStatus } from "./BulkOpStatus.js"; import { BulkOpType } from "./BulkOpType.js"; import { Providers } from "./Providers.js"; export declare const BulkOp: core.serialization.ObjectSchema; export declare namespace BulkOp { interface Raw { type: BulkOpType.Raw; status: BulkOpStatus.Raw; provider: Providers.Raw; pending: number; processed: number; started_at: string; ended_at?: string | null; } }