import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type ConnectionLimitParams = { /** * The maximum number of pages a connection will sync. The connection will be disabled after this limit is reached. Some in process documents may continue processing. Remove the limit by setting to `null`. */ pageLimit?: number | null | undefined; }; /** @internal */ export declare const ConnectionLimitParams$inboundSchema: z.ZodType; /** @internal */ export type ConnectionLimitParams$Outbound = { page_limit?: number | null | undefined; }; /** @internal */ export declare const ConnectionLimitParams$outboundSchema: z.ZodType; export declare function connectionLimitParamsToJSON(connectionLimitParams: ConnectionLimitParams): string; export declare function connectionLimitParamsFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=connectionlimitparams.d.ts.map