import { l } from '@atproto/lex'; import * as ActorDefs from '../actor/defs.defs.js'; declare const $nsid = "app.bsky.contact.getMatches"; export { $nsid }; /** Returns the matched contacts (contacts that were mutually imported). Excludes dismissed matches. Requires authentication. */ declare const main: l.Query<"app.bsky.contact.getMatches", l.ParamsSchema<{ readonly limit: l.OptionalSchema>; readonly cursor: l.OptionalSchema>; }>, l.Payload<"application/json", l.ObjectSchema<{ cursor: l.OptionalSchema>; matches: l.ArraySchema>>; }>>, readonly ["InvalidDid", "InvalidLimit", "InvalidCursor", "InternalError"]>; export { main }; export type $Params = l.InferMethodParams; export type $Output = l.InferMethodOutput; export type $OutputBody = l.InferMethodOutputBody; export declare const $lxm: "app.bsky.contact.getMatches", $params: l.ParamsSchema<{ readonly limit: l.OptionalSchema>; readonly cursor: l.OptionalSchema>; }>, $output: l.Payload<"application/json", l.ObjectSchema<{ cursor: l.OptionalSchema>; matches: l.ArraySchema>>; }>>; //# sourceMappingURL=getMatches.defs.d.ts.map