import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { FileType } from "./filetype.js"; export type SharedLinkTarget = { /** * A unique identifier for an object. */ id: string; /** * The name of the file */ name?: string | null | undefined; /** * The type of resource. Could be file, folder or url */ type?: FileType | null | undefined; }; /** @internal */ export declare const SharedLinkTarget$inboundSchema: z.ZodType; /** @internal */ export type SharedLinkTarget$Outbound = { id: string; name?: string | null | undefined; type?: string | null | undefined; }; /** @internal */ export declare const SharedLinkTarget$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace SharedLinkTarget$ { /** @deprecated use `SharedLinkTarget$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `SharedLinkTarget$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `SharedLinkTarget$Outbound` instead. */ type Outbound = SharedLinkTarget$Outbound; } export declare function sharedLinkTargetToJSON(sharedLinkTarget: SharedLinkTarget): string; export declare function sharedLinkTargetFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=sharedlinktarget.d.ts.map