import React from 'react'; import { ILine } from '../Line/Line'; import { IColor, IElevation, ITonal, IVersion } from '../types'; export interface ICardFooter extends ILine { tonal?: ITonal; color?: IColor; version?: IVersion; elevation?: IElevation; } declare const CardFooter: React.FC; export default CardFooter;