import { l } from '@atproto/lex'; declare const $nsid = "tools.ozone.hosting.getAccountHistory"; export { $nsid }; /** Get account history, e.g. log of updated email addresses or other identity information. */ declare const main: l.Query<"tools.ozone.hosting.getAccountHistory", l.ParamsSchema<{ readonly did: l.StringSchema<{ readonly format: "did"; }>; readonly events: l.OptionalSchema>>; readonly cursor: l.OptionalSchema>; readonly limit: l.OptionalSchema>; }>, l.Payload<"application/json", l.ObjectSchema<{ cursor: l.OptionalSchema>; events: l.ArraySchema>>; }>>, undefined>; export { main }; export type $Params = l.InferMethodParams; export type $Output = l.InferMethodOutput; export type $OutputBody = l.InferMethodOutputBody; export declare const $lxm: "tools.ozone.hosting.getAccountHistory", $params: l.ParamsSchema<{ readonly did: l.StringSchema<{ readonly format: "did"; }>; readonly events: l.OptionalSchema>>; readonly cursor: l.OptionalSchema>; readonly limit: l.OptionalSchema>; }>, $output: l.Payload<"application/json", l.ObjectSchema<{ cursor: l.OptionalSchema>; events: l.ArraySchema>>; }>>; type Event = { $type?: 'tools.ozone.hosting.getAccountHistory#event'; details: l.$Typed | l.$Typed | l.$Typed | l.$Typed | l.$Typed | l.Unknown$TypedObject; createdBy: string; createdAt: l.DatetimeString; }; export type { Event }; declare const event: l.TypedObjectSchema<"tools.ozone.hosting.getAccountHistory#event", l.Validator>; export { event }; type AccountCreated = { $type?: 'tools.ozone.hosting.getAccountHistory#accountCreated'; email?: string; handle?: l.HandleString; }; export type { AccountCreated }; declare const accountCreated: l.TypedObjectSchema<"tools.ozone.hosting.getAccountHistory#accountCreated", l.Validator>; export { accountCreated }; type EmailUpdated = { $type?: 'tools.ozone.hosting.getAccountHistory#emailUpdated'; email: string; }; export type { EmailUpdated }; declare const emailUpdated: l.TypedObjectSchema<"tools.ozone.hosting.getAccountHistory#emailUpdated", l.Validator>; export { emailUpdated }; type EmailConfirmed = { $type?: 'tools.ozone.hosting.getAccountHistory#emailConfirmed'; email: string; }; export type { EmailConfirmed }; declare const emailConfirmed: l.TypedObjectSchema<"tools.ozone.hosting.getAccountHistory#emailConfirmed", l.Validator>; export { emailConfirmed }; type PasswordUpdated = { $type?: 'tools.ozone.hosting.getAccountHistory#passwordUpdated'; }; export type { PasswordUpdated }; declare const passwordUpdated: l.TypedObjectSchema<"tools.ozone.hosting.getAccountHistory#passwordUpdated", l.Validator>; export { passwordUpdated }; type HandleUpdated = { $type?: 'tools.ozone.hosting.getAccountHistory#handleUpdated'; handle: l.HandleString; }; export type { HandleUpdated }; declare const handleUpdated: l.TypedObjectSchema<"tools.ozone.hosting.getAccountHistory#handleUpdated", l.Validator>; export { handleUpdated }; //# sourceMappingURL=getAccountHistory.defs.d.ts.map