import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import * as components from "../components/index.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type ListReposRequest = { /** * Optional external end-user identifier forwarded by the API gateway. */ xOnBehalfOf?: string | undefined; }; /** * The org's repositories. */ export type ListReposResponseBody = { repos: Array; }; /** @internal */ export declare const ListReposRequest$inboundSchema: z.ZodType; /** @internal */ export type ListReposRequest$Outbound = { "X-On-Behalf-Of"?: string | undefined; }; /** @internal */ export declare const ListReposRequest$outboundSchema: z.ZodType; export declare function listReposRequestToJSON(listReposRequest: ListReposRequest): string; export declare function listReposRequestFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const ListReposResponseBody$inboundSchema: z.ZodType; /** @internal */ export type ListReposResponseBody$Outbound = { repos: Array; }; /** @internal */ export declare const ListReposResponseBody$outboundSchema: z.ZodType; export declare function listReposResponseBodyToJSON(listReposResponseBody: ListReposResponseBody): string; export declare function listReposResponseBodyFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=listrepos.d.ts.map