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