import { l } from '@atproto/lex'; declare const $nsid = "app.bsky.notification.updateSeen"; export { $nsid }; /** Notify server that the requesting account has seen notifications. Requires auth. */ declare const main: l.Procedure<"app.bsky.notification.updateSeen", l.ParamsSchema<{}>, l.Payload<"application/json", l.ObjectSchema<{ seenAt: l.StringSchema<{ readonly format: "datetime"; }>; }>>, l.Payload, 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: "app.bsky.notification.updateSeen", $params: l.ParamsSchema<{}>, $input: l.Payload<"application/json", l.ObjectSchema<{ seenAt: l.StringSchema<{ readonly format: "datetime"; }>; }>>, $output: l.Payload; //# sourceMappingURL=updateSeen.defs.d.ts.map