import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type DeleteLinkRequest = { /** * The id of the link to delete. You may use either `linkId` (obtained via `/links/info` endpoint) or `externalId` prefixed with `ext_`. */ linkId: string; }; /** * The deleted link ID. */ export type DeleteLinkResponseBody = { /** * The ID of the link. */ id: string; }; /** @internal */ export type DeleteLinkRequest$Outbound = { linkId: string; }; /** @internal */ export declare const DeleteLinkRequest$outboundSchema: z.ZodType; export declare function deleteLinkRequestToJSON(deleteLinkRequest: DeleteLinkRequest): string; /** @internal */ export declare const DeleteLinkResponseBody$inboundSchema: z.ZodType; export declare function deleteLinkResponseBodyFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=deletelink.d.ts.map