import { l } from '@atproto/lex'; declare const $nsid = "app.bsky.graph.muteThread"; export { $nsid }; /** Mutes a thread preventing notifications from the thread and any of its children. Mutes are private in Bluesky. Requires auth. */ declare const main: l.Procedure<"app.bsky.graph.muteThread", l.ParamsSchema<{}>, l.Payload<"application/json", l.ObjectSchema<{ root: l.StringSchema<{ readonly format: "at-uri"; }>; }>>, 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: "app.bsky.graph.muteThread", $params: l.ParamsSchema<{}>, $input: l.Payload<"application/json", l.ObjectSchema<{ root: l.StringSchema<{ readonly format: "at-uri"; }>; }>>, $output: l.Payload; //# sourceMappingURL=muteThread.defs.d.ts.map