/**
 * The mode for components using infinite scroll:
 *  - auto: Tries to automatically load more data;
 *  - show: Shows a load more button for the user to decide;
 *  - none: Doesn't perform any load more action;
 *  - hidden: Loads more data automatically but with no visible button for the user.
 */
export type LoadMoreMode = 'auto' | 'show' | 'none' | 'hidden';
//# sourceMappingURL=load-more.model.d.ts.map