import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { SmbNegotiationLog } from "./smbnegotiationlog.js"; import { SmbSessionSetupLog } from "./smbsessionsetuplog.js"; import { SmbSmbCapabilities } from "./smbsmbcapabilities.js"; import { SmbSmbVersions } from "./smbsmbversions.js"; export type Smb = { /** * Default group name */ groupName?: string | undefined; /** * Server supports the NTLM authentication method */ hasNtlm?: boolean | undefined; /** * Server-identified operating system */ nativeOs?: string | undefined; negotiationLog?: SmbNegotiationLog | undefined; /** * Native LAN manager */ ntlm?: string | undefined; sessionSetupLog?: SmbSessionSetupLog | undefined; smbCapabilities?: SmbSmbCapabilities | undefined; smbVersion?: SmbSmbVersions | undefined; smbv1Support?: boolean | undefined; }; /** @internal */ export declare const Smb$inboundSchema: z.ZodType; export declare function smbFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=smb.d.ts.map