import * as z from "zod/v4-mini"; export type GetCostsheetRequest = { /** * Costsheet ID */ id: string; /** * Comma-separated list of fields to expand (e.g., 'prices') */ expand?: string | undefined; }; /** @internal */ export type GetCostsheetRequest$Outbound = { id: string; expand?: string | undefined; }; /** @internal */ export declare const GetCostsheetRequest$outboundSchema: z.ZodMiniType; export declare function getCostsheetRequestToJSON(getCostsheetRequest: GetCostsheetRequest): string; //# sourceMappingURL=get-costsheet-op.d.ts.map