import { ListRenderItem } from "@shopify/flash-list"; import React from "react"; export type PaginatedFlashListProps = { pageSize?: number; sortingParam?: string; statusParam?: string; estimatedItemSize?: number; fetchFunction: (params: { sortingParam?: string; statusParam?: string; page: number; pageSize: number; }) => Promise; renderItem: ListRenderItem; ListEmptyComponent: React.ReactElement> | React.ComponentType | undefined; }; export declare function PaginatedFlashList({ pageSize, sortingParam, statusParam, estimatedItemSize, renderItem, fetchFunction, ListEmptyComponent, }: PaginatedFlashListProps): React.JSX.Element; //# sourceMappingURL=PaginatedFlashList.d.ts.map