import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import * as components from "../components/index.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type LayoutsControllerGetUsageRequest = { layoutId: string; /** * A header for idempotency purposes */ idempotencyKey?: string | undefined; }; export type LayoutsControllerGetUsageResponse = { headers: { [k: string]: Array; }; result: components.GetLayoutUsageResponseDto; }; /** @internal */ export type LayoutsControllerGetUsageRequest$Outbound = { layoutId: string; "idempotency-key"?: string | undefined; }; /** @internal */ export declare const LayoutsControllerGetUsageRequest$outboundSchema: z.ZodType; export declare function layoutsControllerGetUsageRequestToJSON(layoutsControllerGetUsageRequest: LayoutsControllerGetUsageRequest): string; /** @internal */ export declare const LayoutsControllerGetUsageResponse$inboundSchema: z.ZodType; export declare function layoutsControllerGetUsageResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=layoutscontrollergetusage.d.ts.map