import { BaseResponse } from '../types'; import { IArticle, NewsCategory } from '../../entities/IArticle'; type NewsPagination = { count: number; previous_page?: number; next_page: string; last_page: number; data: IArticle[]; }; export declare function newsBaseHome(this: any): Promise | undefined>; export declare function newsDetail(this: any, id: number): Promise | undefined>; export declare function newsList(this: any, page: number, category: NewsCategory): Promise | undefined>; export declare function newsSearch(this: any, page: number, search_text: string): Promise | undefined>; export declare function newsVideoContent(this: any, video_content_id: string): Promise | undefined>; export {};