import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { ShellNetworkPolicyDomainSecret, ShellNetworkPolicyDomainSecret$Outbound } from "./shellnetworkpolicydomainsecret.js"; export type ShellNetworkPolicy = { type: "allowlist"; /** * Domains permitted for outbound network access. */ allowedDomains?: Array | undefined; /** * Secrets injected per domain. */ domainSecrets?: Array | undefined; }; /** @internal */ export declare const ShellNetworkPolicy$inboundSchema: z.ZodType; /** @internal */ export type ShellNetworkPolicy$Outbound = { type: "allowlist"; allowed_domains?: Array | undefined; domain_secrets?: Array | undefined; }; /** @internal */ export declare const ShellNetworkPolicy$outboundSchema: z.ZodType; export declare function shellNetworkPolicyToJSON(shellNetworkPolicy: ShellNetworkPolicy): string; export declare function shellNetworkPolicyFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=shellnetworkpolicy.d.ts.map