import { ReactElement } from 'react'; import { Dividend } from '@fridaygame/client'; import { DividendThumbnailTheme } from './dividendThumbnail'; export interface DividendListProps { dividends?: Dividend[]; theme?: DividendThumbnailTheme; } export declare function DividendList({ dividends, theme }: DividendListProps): ReactElement;