import * as z from "zod/v3";
import { Result as SafeParseResult } from "../types/fp.js";
import { SDKValidationError } from "./sdkvalidationerror.js";
export type CreateWebInsightsToggleRequestBody = {
    value: boolean;
};
export type CreateWebInsightsToggleRequest = {
    projectId: string;
    requestBody?: CreateWebInsightsToggleRequestBody | undefined;
};
export type CreateWebInsightsToggleResponseBody = {
    value: boolean;
};
/** @internal */
export type CreateWebInsightsToggleRequestBody$Outbound = {
    value: boolean;
};
/** @internal */
export declare const CreateWebInsightsToggleRequestBody$outboundSchema: z.ZodType<CreateWebInsightsToggleRequestBody$Outbound, z.ZodTypeDef, CreateWebInsightsToggleRequestBody>;
export declare function createWebInsightsToggleRequestBodyToJSON(createWebInsightsToggleRequestBody: CreateWebInsightsToggleRequestBody): string;
/** @internal */
export type CreateWebInsightsToggleRequest$Outbound = {
    projectId: string;
    RequestBody?: CreateWebInsightsToggleRequestBody$Outbound | undefined;
};
/** @internal */
export declare const CreateWebInsightsToggleRequest$outboundSchema: z.ZodType<CreateWebInsightsToggleRequest$Outbound, z.ZodTypeDef, CreateWebInsightsToggleRequest>;
export declare function createWebInsightsToggleRequestToJSON(createWebInsightsToggleRequest: CreateWebInsightsToggleRequest): string;
/** @internal */
export declare const CreateWebInsightsToggleResponseBody$inboundSchema: z.ZodType<CreateWebInsightsToggleResponseBody, z.ZodTypeDef, unknown>;
export declare function createWebInsightsToggleResponseBodyFromJSON(jsonString: string): SafeParseResult<CreateWebInsightsToggleResponseBody, SDKValidationError>;
//# sourceMappingURL=createwebinsightstoggleop.d.ts.map