import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type BulkDeleteLinksRequest = { /** * Comma-separated list of link IDs to delete. Maximum of 100 IDs. Non-existing IDs will be ignored. */ linkIds: Array; }; /** * The deleted links count. */ export type BulkDeleteLinksResponseBody = { /** * The number of links deleted. */ deletedCount: number; }; /** @internal */ export type BulkDeleteLinksRequest$Outbound = { linkIds: Array; }; /** @internal */ export declare const BulkDeleteLinksRequest$outboundSchema: z.ZodType; export declare function bulkDeleteLinksRequestToJSON(bulkDeleteLinksRequest: BulkDeleteLinksRequest): string; /** @internal */ export declare const BulkDeleteLinksResponseBody$inboundSchema: z.ZodType; export declare function bulkDeleteLinksResponseBodyFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=bulkdeletelinks.d.ts.map