import { l } from '@atproto/lex'; declare const $nsid = "com.atproto.sync.listReposByCollection"; export { $nsid }; /** Enumerates all the DIDs which have records with the given collection NSID. */ declare const main: l.Query<"com.atproto.sync.listReposByCollection", l.ParamsSchema<{ readonly collection: l.StringSchema<{ readonly format: "nsid"; }>; readonly limit: l.OptionalSchema>; readonly cursor: l.OptionalSchema>; }>, l.Payload<"application/json", l.ObjectSchema<{ cursor: l.OptionalSchema>; repos: l.ArraySchema>>; }>>, undefined>; export { main }; export type $Params = l.InferMethodParams; export type $Output = l.InferMethodOutput; export type $OutputBody = l.InferMethodOutputBody; export declare const $lxm: "com.atproto.sync.listReposByCollection", $params: l.ParamsSchema<{ readonly collection: l.StringSchema<{ readonly format: "nsid"; }>; readonly limit: l.OptionalSchema>; readonly cursor: l.OptionalSchema>; }>, $output: l.Payload<"application/json", l.ObjectSchema<{ cursor: l.OptionalSchema>; repos: l.ArraySchema>>; }>>; type Repo = { $type?: 'com.atproto.sync.listReposByCollection#repo'; did: l.DidString; }; export type { Repo }; declare const repo: l.TypedObjectSchema<"com.atproto.sync.listReposByCollection#repo", l.Validator>; export { repo }; //# sourceMappingURL=listReposByCollection.defs.d.ts.map