import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { ApiStatus } from "./apistatus.js"; export type ApisFilter = { /** * Status of the API. APIs with status live or beta are callable. */ status?: ApiStatus | undefined; }; /** @internal */ export declare const ApisFilter$inboundSchema: z.ZodType; /** @internal */ export type ApisFilter$Outbound = { status?: string | undefined; }; /** @internal */ export declare const ApisFilter$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace ApisFilter$ { /** @deprecated use `ApisFilter$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `ApisFilter$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `ApisFilter$Outbound` instead. */ type Outbound = ApisFilter$Outbound; } export declare function apisFilterToJSON(apisFilter: ApisFilter): string; export declare function apisFilterFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=apisfilter.d.ts.map