import * as z from "zod/v4-mini"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; /** * Properties available to subscribers for a benefit of type `github_repository`. */ export type BenefitGitHubRepositorySubscriberProperties = { /** * The owner of the repository. */ repositoryOwner: string; /** * The name of the repository. */ repositoryName: string; }; /** @internal */ export declare const BenefitGitHubRepositorySubscriberProperties$inboundSchema: z.ZodMiniType; export declare function benefitGitHubRepositorySubscriberPropertiesFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=benefitgithubrepositorysubscriberproperties.d.ts.map