export interface getPosts { id: string; title: string; image: string; mangainfo: { native_title: string; japanese_title: string; total_chapter: string; status: string; author: string; genre: Array<{ id: string; title: string; }>; }; sinopsis: string; list: Array<{ id: string; title: string; download: string; time: string; }>; } export declare const getPosts: (url: string) => Promise; export interface getPostsView { image: string[]; prev: string; next: string; } export declare const getPostsView: (url: string) => Promise; export interface getPostsViewHtml { html: string; next: string; prev: string; } export declare const getPostsViewHtml: (url: string) => Promise;