import { OnInit } from '@angular/core'; import { Styles, Theme } from '../../types/index'; import { Ground, GroundProps } from '../ground/index'; export interface CardContentProps extends GroundProps { } export declare const CardContentClassKey: string; export declare type CardContentClasses = 'root'; export declare function CardContentStyles(theme: Theme): Styles; export declare class CardContent extends Ground implements OnInit { ngOnInit(): void; composeClasses(): void; }