import { l } from '@atproto/lex'; import * as IdentityDefs from './defs.defs.js'; declare const $nsid = "com.atproto.identity.resolveIdentity"; export { $nsid }; /** Resolves an identity (DID or Handle) to a full identity (DID document and verified handle). */ declare const main: l.Query<"com.atproto.identity.resolveIdentity", l.ParamsSchema<{ readonly identifier: l.StringSchema<{ readonly format: "at-identifier"; }>; }>, l.Payload<"application/json", l.RefSchema>>, readonly ["HandleNotFound", "DidNotFound", "DidDeactivated"]>; export { main }; export type $Params = l.InferMethodParams; export type $Output = l.InferMethodOutput; export type $OutputBody = l.InferMethodOutputBody; export declare const $lxm: "com.atproto.identity.resolveIdentity", $params: l.ParamsSchema<{ readonly identifier: l.StringSchema<{ readonly format: "at-identifier"; }>; }>, $output: l.Payload<"application/json", l.RefSchema>>; //# sourceMappingURL=resolveIdentity.defs.d.ts.map