import { l } from '@atproto/lex'; import * as IdentityDefs from './defs.defs.js'; declare const $nsid = "com.atproto.identity.refreshIdentity"; export { $nsid }; /** Request that the server re-resolve an identity (DID and handle). The server may ignore this request, or require authentication, depending on the role, implementation, and policy of the server. */ declare const main: l.Procedure<"com.atproto.identity.refreshIdentity", l.ParamsSchema<{}>, l.Payload<"application/json", l.ObjectSchema<{ 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 $Input = l.InferMethodInput; export type $InputBody = l.InferMethodInputBody; export type $Output = l.InferMethodOutput; export type $OutputBody = l.InferMethodOutputBody; export declare const $lxm: "com.atproto.identity.refreshIdentity", $params: l.ParamsSchema<{}>, $input: l.Payload<"application/json", l.ObjectSchema<{ identifier: l.StringSchema<{ readonly format: "at-identifier"; }>; }>>, $output: l.Payload<"application/json", l.RefSchema>>; //# sourceMappingURL=refreshIdentity.defs.d.ts.map