import { l } from '@atproto/lex'; declare const $nsid = "com.atproto.sync.getRepoStatus"; export { $nsid }; /** Get the hosting status for a repository, on this server. Expected to be implemented by PDS and Relay. */ declare const main: l.Query<"com.atproto.sync.getRepoStatus", l.ParamsSchema<{ readonly did: l.StringSchema<{ readonly format: "did"; }>; }>, l.Payload<"application/json", l.ObjectSchema<{ did: l.StringSchema<{ readonly format: "did"; }>; active: l.BooleanSchema; status: l.OptionalSchema>; rev: l.OptionalSchema>; }>>, readonly ["RepoNotFound"]>; export { main }; export type $Params = l.InferMethodParams; export type $Output = l.InferMethodOutput; export type $OutputBody = l.InferMethodOutputBody; export declare const $lxm: "com.atproto.sync.getRepoStatus", $params: l.ParamsSchema<{ readonly did: l.StringSchema<{ readonly format: "did"; }>; }>, $output: l.Payload<"application/json", l.ObjectSchema<{ did: l.StringSchema<{ readonly format: "did"; }>; active: l.BooleanSchema; status: l.OptionalSchema>; rev: l.OptionalSchema>; }>>; //# sourceMappingURL=getRepoStatus.defs.d.ts.map