import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type FormPdf = { /** * the UUID of the form */ uuid: string; /** * the URL of the form */ documentUrl?: string | null | undefined; /** * The content type of the associated document. Most forms are PDFs with a content type of `application/pdf`. Some tax file packages will be zip files (containing PDFs) with a content type of `application/zip`. This attribute will be `null` when the document has not been prepared. */ documentContentType?: string | null | undefined; }; /** @internal */ export declare const FormPdf$inboundSchema: z.ZodType; export declare function formPdfFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=formpdf.d.ts.map