import { l } from '@atproto/lex'; import * as ActorDefs from './defs.defs.js'; declare const $nsid = "app.bsky.actor.getProfile"; export { $nsid }; /** Get detailed profile view of an actor. Does not require auth, but contains relevant metadata with auth. */ declare const main: l.Query<"app.bsky.actor.getProfile", l.ParamsSchema<{ readonly actor: l.StringSchema<{ readonly format: "at-identifier"; }>; }>, l.Payload<"application/json", l.RefSchema>>, 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.getProfile", $params: l.ParamsSchema<{ readonly actor: l.StringSchema<{ readonly format: "at-identifier"; }>; }>, $output: l.Payload<"application/json", l.RefSchema>>; //# sourceMappingURL=getProfile.defs.d.ts.map