import * as z from "zod/v4-mini"; export type CreateCostsheetRequest = { description?: string | undefined; lookupKey?: string | undefined; metadata?: { [k: string]: string; } | undefined; name: string; }; /** @internal */ export type CreateCostsheetRequest$Outbound = { description?: string | undefined; lookup_key?: string | undefined; metadata?: { [k: string]: string; } | undefined; name: string; }; /** @internal */ export declare const CreateCostsheetRequest$outboundSchema: z.ZodMiniType; export declare function createCostsheetRequestToJSON(createCostsheetRequest: CreateCostsheetRequest): string; //# sourceMappingURL=create-costsheet-request.d.ts.map