import { EventEmitter } from '../../stencil-public-runtime'; /** * Cards are surfaces that display content and actions on a single topic. They * should be easy to scan for relevant and actionable information. */ export declare class CatCard { /** * Emitted when the card and all the children are fully loaded. */ catLoad: EventEmitter; render(): any; componentDidLoad(): void; }