import { l } from '@atproto/lex'; declare const $nsid = "com.atproto.identity.resolveDid"; export { $nsid }; /** Resolves DID to DID document. Does not bi-directionally verify handle. */ declare const main: l.Query<"com.atproto.identity.resolveDid", l.ParamsSchema<{ readonly did: l.StringSchema<{ readonly format: "did"; }>; }>, l.Payload<"application/json", l.ObjectSchema<{ didDoc: l.LexMapSchema; }>>, readonly ["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.resolveDid", $params: l.ParamsSchema<{ readonly did: l.StringSchema<{ readonly format: "did"; }>; }>, $output: l.Payload<"application/json", l.ObjectSchema<{ didDoc: l.LexMapSchema; }>>; //# sourceMappingURL=resolveDid.defs.d.ts.map