import { l } from '@atproto/lex'; import * as ConvoDefs from './defs.defs.js'; declare const $nsid = "chat.bsky.convo.removeReaction"; export { $nsid }; /** Removes an emoji reaction from a message. Requires authentication. It is idempotent, so multiple calls from the same user with the same emoji result in that reaction not being present, even if it already wasn't. */ declare const main: l.Procedure<"chat.bsky.convo.removeReaction", l.ParamsSchema<{}>, l.Payload<"application/json", l.ObjectSchema<{ convoId: l.StringSchema<{}>; messageId: l.StringSchema<{}>; value: l.StringSchema<{ readonly minLength: 1; readonly maxLength: 64; readonly minGraphemes: 1; readonly maxGraphemes: 1; }>; }>>, l.Payload<"application/json", l.ObjectSchema<{ message: l.RefSchema>; }>>, readonly ["ReactionMessageDeleted", "ReactionInvalidValue"]>; 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: "chat.bsky.convo.removeReaction", $params: l.ParamsSchema<{}>, $input: l.Payload<"application/json", l.ObjectSchema<{ convoId: l.StringSchema<{}>; messageId: l.StringSchema<{}>; value: l.StringSchema<{ readonly minLength: 1; readonly maxLength: 64; readonly minGraphemes: 1; readonly maxGraphemes: 1; }>; }>>, $output: l.Payload<"application/json", l.ObjectSchema<{ message: l.RefSchema>; }>>; //# sourceMappingURL=removeReaction.defs.d.ts.map