Repository URL to install this package:
|
Version:
2.1.16 ▾
|
import React from 'react';
import { NO_OP } from 'exotic';
import { DashboardCardProps } from './typings';
import { defaultRenderHeading, defaultRenderDescription, defaultRenderButton } from './renderProps';
declare class DashboardCard extends React.PureComponent<DashboardCardProps> {
static defaultProps: {
className: string;
renderHeading: typeof defaultRenderHeading;
renderDescription: typeof defaultRenderDescription;
renderButton: typeof defaultRenderButton;
onButtonClick: typeof NO_OP;
};
render(): JSX.Element;
}
export { DashboardCard };
export default DashboardCard;