import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { LpdMessage } from "./lpdmessage.js"; export type Lpd = { jobs?: LpdMessage | undefined; longState?: string | undefined; lpdMessage?: LpdMessage | undefined; printer?: string | undefined; raw?: string | undefined; shortState?: string | undefined; text?: string | undefined; }; /** @internal */ export declare const Lpd$inboundSchema: z.ZodType; export declare function lpdFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=lpd.d.ts.map