export interface HomeResults { id: string; image: string; hot: boolean; type: string; boxinfo: { tt: string; ttx: string; imdbs: string; progress: string; score: string; status: string; }; fixyear: { title: string; time: string; last_id: string; last_title: string; }; } export declare const Home: ({ page }: { page?: number | undefined; }) => Promise; export declare const TotalPageHome: () => Promise;