import { l } from '@atproto/lex'; declare const $nsid = "app.bsky.notification.getUnreadCount"; export { $nsid }; /** Count the number of unread notifications for the requesting account. Requires auth. */ declare const main: l.Query<"app.bsky.notification.getUnreadCount", l.ParamsSchema<{ readonly priority: l.OptionalSchema; readonly seenAt: l.OptionalSchema>; }>, l.Payload<"application/json", l.ObjectSchema<{ count: l.IntegerSchema; }>>, undefined>; export { main }; export type $Params = l.InferMethodParams; export type $Output = l.InferMethodOutput; export type $OutputBody = l.InferMethodOutputBody; export declare const $lxm: "app.bsky.notification.getUnreadCount", $params: l.ParamsSchema<{ readonly priority: l.OptionalSchema; readonly seenAt: l.OptionalSchema>; }>, $output: l.Payload<"application/json", l.ObjectSchema<{ count: l.IntegerSchema; }>>; //# sourceMappingURL=getUnreadCount.defs.d.ts.map