import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type SmbSmbCapabilities = { /** * Server supports Distributed File System */ smbDfsSupport?: boolean | undefined; /** * Server supports directory leasing */ smbDirectoryLeasingSupport?: boolean | undefined; /** * Server supports encryption */ smbEncryptionSupport?: boolean | undefined; /** * Server supports Leasing */ smbLeasingSupport?: boolean | undefined; /** * Server supports multiple channels per session */ smbMultichanSupport?: boolean | undefined; /** * Server supports multi-credit operations */ smbMulticreditSupport?: boolean | undefined; /** * Server supports persistent handles */ smbPersistentHandleSupport?: boolean | undefined; }; /** @internal */ export declare const SmbSmbCapabilities$inboundSchema: z.ZodType; export declare function smbSmbCapabilitiesFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=smbsmbcapabilities.d.ts.map