export interface getByList { id: string; title: string; } export declare const getByList: () => Promise; export interface getList { list: Array<{ id: string; title: string; image: string; status: string; genre: Array<{ id: string; title: string; }>; }>; total: number; } export declare const getList: ({ page, search, genre, }: { page?: number | undefined; search?: string | undefined; genre?: string | undefined; }) => Promise;