import { l } from '@atproto/lex'; import * as ConvoDefs from './defs.defs.js'; declare const $nsid = "chat.bsky.convo.getConvoAvailability"; export { $nsid }; /** Get whether the requester and the other members can chat. If an existing convo is found for these members, it is returned. */ declare const main: l.Query<"chat.bsky.convo.getConvoAvailability", l.ParamsSchema<{ readonly members: l.ArraySchema>; }>, l.Payload<"application/json", l.ObjectSchema<{ canChat: l.BooleanSchema; convo: l.OptionalSchema>>; }>>, undefined>; export { main }; export type $Params = l.InferMethodParams; export type $Output = l.InferMethodOutput; export type $OutputBody = l.InferMethodOutputBody; export declare const $lxm: "chat.bsky.convo.getConvoAvailability", $params: l.ParamsSchema<{ readonly members: l.ArraySchema>; }>, $output: l.Payload<"application/json", l.ObjectSchema<{ canChat: l.BooleanSchema; convo: l.OptionalSchema>>; }>>; //# sourceMappingURL=getConvoAvailability.defs.d.ts.map