import * as z from "zod/v3"; import { OpenEnum } from "../../types/enums.js"; /** * The level of visibility of the document as understood by our system. */ export declare const DocumentVisibility: { /** * Only one person is able to see the document. */ readonly Private: "PRIVATE"; /** * Only specific people and/or groups can see the document. */ readonly SpecificPeopleAndGroups: "SPECIFIC_PEOPLE_AND_GROUPS"; /** * Anyone in the domain with the link can see the document. */ readonly DomainLink: "DOMAIN_LINK"; /** * Anyone in the domain can search for the document. */ readonly DomainVisible: "DOMAIN_VISIBLE"; /** * Anyone with the link can see the document. */ readonly PublicLink: "PUBLIC_LINK"; /** * Anyone on the internet can search for the document. */ readonly PublicVisible: "PUBLIC_VISIBLE"; }; /** * The level of visibility of the document as understood by our system. */ export type DocumentVisibility = OpenEnum; /** @internal */ export declare const DocumentVisibility$inboundSchema: z.ZodType; /** @internal */ export declare const DocumentVisibility$outboundSchema: z.ZodType; //# sourceMappingURL=documentvisibility.d.ts.map