import { l } from '@atproto/lex'; import * as ConvoDefs from './defs.defs.js'; declare const $nsid = "chat.bsky.convo.removeReaction"; export { $nsid }; export declare const $params: l.ParamsSchema<{}>; export type $Params = l.InferOutput; export declare const $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; }>; }>>; export type $Input = l.InferPayload; export type $InputBody = l.InferPayloadBody; export declare const $output: l.Payload<"application/json", l.ObjectSchema<{ message: l.RefSchema>; }>>; export type $Output = l.InferPayload; export type $OutputBody = l.InferPayloadBody; /** 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 ["InvalidConvo", "ReactionNotAllowed", "ReactionMessageDeleted", "ReactionInvalidValue"]>; export { main }; export declare const $lxm = "chat.bsky.convo.removeReaction"; //# sourceMappingURL=removeReaction.defs.d.ts.map