import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type Ftp = { authSslResponse?: string | undefined; authTlsResponse?: string | undefined; implicitTls?: boolean | undefined; statusCode?: number | undefined; statusMeaning?: string | undefined; }; /** @internal */ export declare const Ftp$inboundSchema: z.ZodType; export declare function ftpFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=ftp.d.ts.map