import { EventEmitter } from '../../../stencil-public-runtime'; export declare class ProfileCard { /** The title for the card - usually a full name */ cardtitle: string; /** A sub heading - usually the date*/ date: string; /** The URL link for the primary text link on the bottom left of the card*/ link: string; /** The ID string for click events, using Stencil's Emitter. Only applies to card's bottom right link- DEVELOPER USE */ emitid: string; /** A call back function to be supplied for the first (left hand side) call to action, as well as the clickable name */ primaryfn: () => void; /** The image URL */ image: string; /** Applies to lazy loading of images. Remove lazy loading */ nolazy: boolean; /** Specifiy which part of the image to focus on. Defaults to center */ imagefocus: 'center' | 'top' | 'bottom' | 'right' | 'left' | 'faces'; host: HTMLElement; emitClick: EventEmitter; clickHandler(e: Event, cb: () => void): void; keyDownHandler(e: KeyboardEvent, cb: () => void): void; addFocus(): Promise; render(): any; }