import { ComponentInterface, EventEmitter } from '../../stencil-public-runtime'; export declare class Cardimage implements ComponentInterface { /** * The Host element **/ el: HTMLElement; /** * Image URL */ img: string; /** * The image alternative text. */ alt: string; /** * Emitted when nav item loads. */ claImgDidLoad: EventEmitter; private ispreserveaspect; private preserveaspect; componentDidLoad(): void; componentWillLoad(): void; render(): any; }