import React from 'react'; import type { Action, AncillaryDataProps, CardProps } from '../types'; export interface ActionsCard extends CardProps, AncillaryDataProps { actions?: Action; feedType?: string; cid?: string; } export declare const Card: React.FunctionComponent;