import * as z from "zod/v3";
import { ClosedEnum } from "../types/enums.js";
import { Result as SafeParseResult } from "../types/fp.js";
import { GlobalConfigItemValue } from "./globalconfigitemvalue.js";
import { SDKValidationError } from "./sdkvalidationerror.js";
export type HeadInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigRequest = {
    integrationConfigurationId: string;
    resourceId: string;
};
export declare const HeadInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigPurpose: {
    readonly Experimentation: "experimentation";
    readonly Flags: "flags";
};
export type HeadInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigPurpose = ClosedEnum<typeof HeadInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigPurpose>;
/**
 * The Global Config data
 */
export type HeadInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigResponseBody = {
    items: {
        [k: string]: GlobalConfigItemValue | null;
    };
    updatedAt: number;
    digest: string;
    purpose?: HeadInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigPurpose | undefined;
};
/** @internal */
export type HeadInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigRequest$Outbound = {
    integrationConfigurationId: string;
    resourceId: string;
};
/** @internal */
export declare const HeadInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigRequest$outboundSchema: z.ZodType<HeadInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigRequest$Outbound, z.ZodTypeDef, HeadInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigRequest>;
export declare function headInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigRequestToJSON(headInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigRequest: HeadInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigRequest): string;
/** @internal */
export declare const HeadInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigPurpose$inboundSchema: z.ZodNativeEnum<typeof HeadInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigPurpose>;
/** @internal */
export declare const HeadInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigResponseBody$inboundSchema: z.ZodType<HeadInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigResponseBody, z.ZodTypeDef, unknown>;
export declare function headInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigResponseBodyFromJSON(jsonString: string): SafeParseResult<HeadInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigResponseBody, SDKValidationError>;
//# sourceMappingURL=headinstallationsbyintegrationconfigurationidresourcesbyresourceidexperimentationglobalconfigop.d.ts.map