import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type GetDocPermissionsResponse = { /** * A list of emails of users who have access to the document. If the document is visible to all Glean users, a list with only a single value of 'VISIBLE_TO_ALL'. */ allowedUserEmails?: Array | undefined; }; /** @internal */ export declare const GetDocPermissionsResponse$inboundSchema: z.ZodType; export declare function getDocPermissionsResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=getdocpermissionsresponse.d.ts.map