UNPKG

@etsoo/materialui

Version:

TypeScript Material-UI Implementation

13 lines (12 loc) 446 B
import { ScrollerListExProps } from "../ScrollerListEx"; import type { SearchPageProps } from "./SearchPageProps"; /** * List page props */ export type ListPageProps<T extends object, F> = SearchPageProps<T, F> & Omit<ScrollerListExProps<T>, "loadData">; /** * List page * @param props Props * @returns Component */ export declare function ListPage<T extends object, F>(props: ListPageProps<T, F>): import("react/jsx-runtime").JSX.Element;