import { l } from '@atproto/lex'; import * as ActorDefs from './defs.defs.js'; declare const $nsid = "app.bsky.actor.getSuggestions"; export { $nsid }; /** Get a list of suggested actors. Expected use is discovery of accounts to follow during new account onboarding. */ declare const main: l.Query<"app.bsky.actor.getSuggestions", l.ParamsSchema<{ readonly limit: l.OptionalSchema>; readonly cursor: l.OptionalSchema>; }>, l.Payload<"application/json", l.ObjectSchema<{ cursor: l.OptionalSchema>; actors: l.ArraySchema>>; recId: l.OptionalSchema; recIdStr: l.OptionalSchema>; }>>, undefined>; export { main }; export type $Params = l.InferMethodParams; export type $Output = l.InferMethodOutput; export type $OutputBody = l.InferMethodOutputBody; export declare const $lxm: "app.bsky.actor.getSuggestions", $params: l.ParamsSchema<{ readonly limit: l.OptionalSchema>; readonly cursor: l.OptionalSchema>; }>, $output: l.Payload<"application/json", l.ObjectSchema<{ cursor: l.OptionalSchema>; actors: l.ArraySchema>>; recId: l.OptionalSchema; recIdStr: l.OptionalSchema>; }>>; //# sourceMappingURL=getSuggestions.defs.d.ts.map