import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type LogsFilter = { connectorId?: string | null | undefined; statusCode?: number | null | undefined; excludeUnifiedApis?: string | null | undefined; }; /** @internal */ export declare const LogsFilter$inboundSchema: z.ZodType; /** @internal */ export type LogsFilter$Outbound = { connector_id?: string | null | undefined; status_code?: number | null | undefined; exclude_unified_apis?: string | null | undefined; }; /** @internal */ export declare const LogsFilter$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 LogsFilter$ { /** @deprecated use `LogsFilter$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `LogsFilter$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `LogsFilter$Outbound` instead. */ type Outbound = LogsFilter$Outbound; } export declare function logsFilterToJSON(logsFilter: LogsFilter): string; export declare function logsFilterFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=logsfilter.d.ts.map