import * as z from "zod/v3";
import { Result as SafeParseResult } from "../types/fp.js";
import { SDKValidationError } from "./sdkvalidationerror.js";
export type CreateSpeedInsightsToggleRequestBody = {
    value: boolean;
};
export type CreateSpeedInsightsToggleRequest = {
    projectId: string;
    requestBody?: CreateSpeedInsightsToggleRequestBody | undefined;
};
export type CreateSpeedInsightsToggleResponseBody = {
    value: boolean;
};
/** @internal */
export type CreateSpeedInsightsToggleRequestBody$Outbound = {
    value: boolean;
};
/** @internal */
export declare const CreateSpeedInsightsToggleRequestBody$outboundSchema: z.ZodType<CreateSpeedInsightsToggleRequestBody$Outbound, z.ZodTypeDef, CreateSpeedInsightsToggleRequestBody>;
export declare function createSpeedInsightsToggleRequestBodyToJSON(createSpeedInsightsToggleRequestBody: CreateSpeedInsightsToggleRequestBody): string;
/** @internal */
export type CreateSpeedInsightsToggleRequest$Outbound = {
    projectId: string;
    RequestBody?: CreateSpeedInsightsToggleRequestBody$Outbound | undefined;
};
/** @internal */
export declare const CreateSpeedInsightsToggleRequest$outboundSchema: z.ZodType<CreateSpeedInsightsToggleRequest$Outbound, z.ZodTypeDef, CreateSpeedInsightsToggleRequest>;
export declare function createSpeedInsightsToggleRequestToJSON(createSpeedInsightsToggleRequest: CreateSpeedInsightsToggleRequest): string;
/** @internal */
export declare const CreateSpeedInsightsToggleResponseBody$inboundSchema: z.ZodType<CreateSpeedInsightsToggleResponseBody, z.ZodTypeDef, unknown>;
export declare function createSpeedInsightsToggleResponseBodyFromJSON(jsonString: string): SafeParseResult<CreateSpeedInsightsToggleResponseBody, SDKValidationError>;
//# sourceMappingURL=createspeedinsightstoggleop.d.ts.map