import { l } from '@atproto/lex'; declare const $nsid = "com.atproto.server.reserveSigningKey"; export { $nsid }; /** Reserve a repo signing key, for use with account creation. Necessary so that a DID PLC update operation can be constructed during an account migraiton. Public and does not require auth; implemented by PDS. NOTE: this endpoint may change when full account migration is implemented. */ declare const main: l.Procedure<"com.atproto.server.reserveSigningKey", l.ParamsSchema<{}>, l.Payload<"application/json", l.ObjectSchema<{ did: l.OptionalSchema>; }>>, l.Payload<"application/json", l.ObjectSchema<{ signingKey: l.StringSchema<{}>; }>>, undefined>; 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.server.reserveSigningKey", $params: l.ParamsSchema<{}>, $input: l.Payload<"application/json", l.ObjectSchema<{ did: l.OptionalSchema>; }>>, $output: l.Payload<"application/json", l.ObjectSchema<{ signingKey: l.StringSchema<{}>; }>>; //# sourceMappingURL=reserveSigningKey.defs.d.ts.map