import { type CommonAction } from "@iflyrpa/share"; import type { ActiomCommonParams } from "../../types"; export interface GetShipinhaoPostListParams extends ActiomCommonParams { lastBuff?: string; pageSize?: number; userpageType?: number; } export interface PostListResponse { errCode: number; errMsg: string; data: { list: PostDetail[]; totalCount: number; hasMore: boolean; }; } export interface PostDetail { postId: string; title: string; createTime: number; status: number; coverUrl: string; readCount: number; likeCount: number; commentCount: number; } export type GetPostListAction = CommonAction; export declare const getShipinhaoPostList: GetPostListAction;