import { l } from '@atproto/lex'; import * as ActorDefs from '../actor/defs.defs.js'; declare const $nsid = "app.bsky.graph.getFollows"; export { $nsid }; /** Enumerates accounts which a specified account (actor) follows. */ declare const main: l.Query<"app.bsky.graph.getFollows", l.ParamsSchema<{ readonly actor: l.StringSchema<{ readonly format: "at-identifier"; }>; readonly limit: l.OptionalSchema>; readonly cursor: l.OptionalSchema>; }>, l.Payload<"application/json", l.ObjectSchema<{ subject: l.RefSchema>; cursor: l.OptionalSchema>; follows: l.ArraySchema>>; }>>, undefined>; export { main }; export type $Params = l.InferMethodParams; export type $Output = l.InferMethodOutput; export type $OutputBody = l.InferMethodOutputBody; export declare const $lxm: "app.bsky.graph.getFollows", $params: l.ParamsSchema<{ readonly actor: l.StringSchema<{ readonly format: "at-identifier"; }>; readonly limit: l.OptionalSchema>; readonly cursor: l.OptionalSchema>; }>, $output: l.Payload<"application/json", l.ObjectSchema<{ subject: l.RefSchema>; cursor: l.OptionalSchema>; follows: l.ArraySchema>>; }>>; //# sourceMappingURL=getFollows.defs.d.ts.map