import { HTMLAttributeAnchorTarget, ReactElement } from 'react'; import { To } from 'react-router'; import { MatchStatus } from '@fridaygame/client'; export interface MatchActionProps { status?: MatchStatus; toComposition?: To; onCompositionClick?: () => unknown; compositionHref?: string; compositionTarget?: HTMLAttributeAnchorTarget; toFeed?: To; onFeedClick?: () => unknown; feedHref?: string; feedTarget?: HTMLAttributeAnchorTarget; } export declare function MatchAction({ status, toComposition, onCompositionClick, compositionHref, compositionTarget, toFeed, onFeedClick, feedHref, feedTarget, }: MatchActionProps): ReactElement;