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