import { l } from '@atproto/lex'; declare const $nsid = "com.atproto.sync.notifyOfUpdate"; export { $nsid }; /** * Notify a crawling service of a recent update, and that crawling should resume. Intended use is after a gap between repo stream events caused the crawling service to disconnect. Does not require auth; implemented by Relay. * @deprecated just use com.atproto.sync.requestCrawl */ declare const main: l.Procedure<"com.atproto.sync.notifyOfUpdate", l.ParamsSchema<{}>, l.Payload<"application/json", l.ObjectSchema<{ hostname: l.StringSchema<{}>; }>>, l.Payload, undefined>; export { main }; export type $Params = l.InferMethodParams; export type $Input = l.InferMethodInput; export type $InputBody = l.InferMethodInputBody; export type $Output = l.InferMethodOutput; export type $OutputBody = l.InferMethodOutputBody; export declare const $lxm: "com.atproto.sync.notifyOfUpdate", $params: l.ParamsSchema<{}>, $input: l.Payload<"application/json", l.ObjectSchema<{ hostname: l.StringSchema<{}>; }>>, $output: l.Payload; //# sourceMappingURL=notifyOfUpdate.defs.d.ts.map