import * as z from "zod/v4-mini"; import { Result as SafeParseResult } from "../../types/fp.js"; import { CostsheetResponse } from "./costsheet-response.js"; import { PaginationResponse } from "./pagination-response.js"; import { SDKValidationError } from "./sdk-validation-error.js"; export type ListCostsheetResponse = { items?: Array | undefined; pagination?: PaginationResponse | undefined; }; /** @internal */ export declare const ListCostsheetResponse$inboundSchema: z.ZodMiniType; export declare function listCostsheetResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=list-costsheet-response.d.ts.map