import React from 'react'; import type { Action, AncillaryDataProps, CardProps } from '../types'; export interface ComponentProps extends CardProps, AncillaryDataProps { contents: any; actions?: Action; } export declare const ImageCard: React.FunctionComponent;