import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type ReverseAccessEntry = { orgId: string; grantedBy: string; grantedAt: Date; active: boolean; activatedBy: string | null; activatedAt: Date | null; }; /** @internal */ export declare const ReverseAccessEntry$inboundSchema: z.ZodType; /** @internal */ export type ReverseAccessEntry$Outbound = { org_id: string; granted_by: string; granted_at: string; active: boolean; activated_by: string | null; activated_at: string | null; }; /** @internal */ export declare const ReverseAccessEntry$outboundSchema: z.ZodType; export declare function reverseAccessEntryToJSON(reverseAccessEntry: ReverseAccessEntry): string; export declare function reverseAccessEntryFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=reverseaccessentry.d.ts.map