import * as z from "zod/v3"; import { ClosedEnum } from "../../types/enums.js"; /** * The type of check stock being printed. Check the "Types of check stock" section in this [link](https://support.gusto.com/article/999877761000000/Pay-your-team-by-check) for more info on check types */ export declare const PrintingFormat: { readonly Top: "top"; readonly Bottom: "bottom"; }; /** * The type of check stock being printed. Check the "Types of check stock" section in this [link](https://support.gusto.com/article/999877761000000/Pay-your-team-by-check) for more info on check types */ export type PrintingFormat = ClosedEnum; /** * Request body for generating printable payroll checks. */ export type PrintablePayrollChecksBody = { /** * The type of check stock being printed. Check the "Types of check stock" section in this [link](https://support.gusto.com/article/999877761000000/Pay-your-team-by-check) for more info on check types */ printingFormat: PrintingFormat; /** * The starting check number we will start generating checks from. Use to override the sequence that will be used to generate check numbers. */ startingCheckNumber?: number | undefined; }; /** @internal */ export declare const PrintingFormat$outboundSchema: z.ZodNativeEnum; /** @internal */ export type PrintablePayrollChecksBody$Outbound = { printing_format: string; starting_check_number?: number | undefined; }; /** @internal */ export declare const PrintablePayrollChecksBody$outboundSchema: z.ZodType; export declare function printablePayrollChecksBodyToJSON(printablePayrollChecksBody: PrintablePayrollChecksBody): string; //# sourceMappingURL=printablepayrollchecksbody.d.ts.map