import { NjcCard } from '../card/card.ts'; export type NJC_IMAGE_CARD_ALIGNMENT = 'left' | 'center'; export type NJC_IMAGE_CARD_VARIANT = 'base' | 'full-image' | 'small-left' | 'small-right'; export declare class NjcImageCard extends NjcCard { /** * @property {string} alignment * @description The text alignment of the image card */ alignment: NJC_IMAGE_CARD_ALIGNMENT; /** * @property {string} variant * @description The layout variant of the image card */ variant: NJC_IMAGE_CARD_VARIANT; /** * @property {string} imageSrc * @description The src image for the image card */ imageSrc: string; /** * @property {string} imageAlt * @description The alt text for the image card */ imageAlt: string; }