import * as z from "zod/v3";
export type ListRepositoriesRequest = {
    /**
     * Project ID. Missing or empty values return HTTP 400.
     */
    projectId: string;
    limit?: number | undefined;
    /**
     * Opaque pagination cursor returned by a previous list response.
     */
    cursor?: string | undefined;
    /**
     * The Team identifier to perform the request on behalf of.
     */
    teamId?: string | undefined;
    /**
     * The Team slug to perform the request on behalf of.
     */
    slug?: string | undefined;
};
/** @internal */
export type ListRepositoriesRequest$Outbound = {
    projectId: string;
    limit?: number | undefined;
    cursor?: string | undefined;
    teamId?: string | undefined;
    slug?: string | undefined;
};
/** @internal */
export declare const ListRepositoriesRequest$outboundSchema: z.ZodType<ListRepositoriesRequest$Outbound, z.ZodTypeDef, ListRepositoriesRequest>;
export declare function listRepositoriesRequestToJSON(listRepositoriesRequest: ListRepositoriesRequest): string;
//# sourceMappingURL=listrepositoriesop.d.ts.map