You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
366 B

import * as React from 'react';
import { CardFooterPropsType } from './PropsType';
export interface CardFooterProps extends CardFooterPropsType {
prefixCls?: string;
className?: string;
}
export default class CardFooter extends React.Component<CardFooterProps, any> {
static defaultProps: {
prefixCls: string;
};
render(): JSX.Element;
}