import { type CommonAction } from "@iflyrpa/share"; import { z } from "zod"; import type { ActiomCommonParams } from "../../types"; export declare const UnreadCountSchema: z.ZodObject<{ connections: z.ZodNullable; mentions: z.ZodNullable; unread_count: z.ZodNullable; likes: z.ZodNullable; }, z.core.$strip>; export type UnreadCount = z.infer; export type PublishAction = CommonAction; export declare const getXhsUnreadCount: PublishAction;