import { l } from '@atproto/lex'; import * as GraphDefs from './defs.defs.js'; declare const $nsid = "app.bsky.graph.getRelationships"; export { $nsid }; /** Enumerates public relationships between one account, and a list of other accounts. Does not require auth. */ declare const main: l.Query<"app.bsky.graph.getRelationships", l.ParamsSchema<{ readonly actor: l.StringSchema<{ readonly format: "at-identifier"; }>; readonly others: l.OptionalSchema>>; }>, l.Payload<"application/json", l.ObjectSchema<{ actor: l.OptionalSchema>; relationships: l.ArraySchema>, l.TypedRefSchema>], false>>; }>>, readonly ["ActorNotFound"]>; export { main }; export type $Params = l.InferMethodParams; export type $Output = l.InferMethodOutput; export type $OutputBody = l.InferMethodOutputBody; export declare const $lxm: "app.bsky.graph.getRelationships", $params: l.ParamsSchema<{ readonly actor: l.StringSchema<{ readonly format: "at-identifier"; }>; readonly others: l.OptionalSchema>>; }>, $output: l.Payload<"application/json", l.ObjectSchema<{ actor: l.OptionalSchema>; relationships: l.ArraySchema>, l.TypedRefSchema>], false>>; }>>; //# sourceMappingURL=getRelationships.defs.d.ts.map