import React from 'react'; import type { UNComponentsOnLoadResponse, UNActivityOnLoadData, UNActivityComponentPaginationType } from '../../types/shared'; export interface UNActivityComponentProps { accountId?: string; queryFilter?: string; theme?: string; language?: string; hideFilterButton?: boolean; hideTitle?: boolean; hideBackToTop?: boolean; paginationType?: UNActivityComponentPaginationType; transactionsPerPage?: number; showDeclinedActivity?: boolean; showCsvDownload?: boolean; onLoad?: (response: UNComponentsOnLoadResponse) => void; } export interface UNActivityRef { refresh: () => void; } declare const _default: React.ForwardRefExoticComponent>; export default _default; //# sourceMappingURL=UNActivityComponent.d.ts.map