import { l } from '@atproto/lex'; import * as ConvoDefs from './defs.defs.js'; declare const $nsid = "chat.bsky.convo.getConvoAvailability"; export { $nsid }; export declare const $params: l.ParamsSchema<{ readonly members: l.ArraySchema>; }>; export type $Params = l.InferOutput; export declare const $output: l.Payload<"application/json", l.ObjectSchema<{ canChat: l.BooleanSchema; convo: l.OptionalSchema>>; }>>; export type $Output = l.InferPayload; export type $OutputBody = l.InferPayloadBody; /** Check whether the requester and the other members can start a 1-1 chat. Only applicable to direct (non-group) conversations. If an existing convo is found for these members, it is returned. Does not create a new convo if it doesn't exist. */ 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 declare const $lxm = "chat.bsky.convo.getConvoAvailability"; //# sourceMappingURL=getConvoAvailability.defs.d.ts.map