/// <reference types="react" />
import { StoryDto } from "../../dto";
type PopularPostsProps = {
    popularList: StoryDto[];
    serviceType: string;
    nextVersion: number;
    sendLog: (action: string, data: {
        [dataName: string]: string;
    }) => void;
};
export default function PopularPosts({ popularList, serviceType, nextVersion, sendLog }: PopularPostsProps): JSX.Element;
export {};
