/** Shape used by `showLoadNext` / `showLoadPrevious` on TransactionListPage. */ export type TransactionListPageLoadPeriodFlags = { isLoading: boolean; }; /** * Drives the table's bottom skeleton in ConfigurableDataListTable (`isLoadingNextPeriod`). * Load-next control is above the table; load-previous is below — both use the end skeleton. */ export declare function isTransactionListTableBottomPeriodSkeletonActive(showLoadNext: TransactionListPageLoadPeriodFlags | undefined, showLoadPrevious: TransactionListPageLoadPeriodFlags | undefined): boolean;