import { AlloyIcon } from "../../cell/icon/icon.model"; import { Bar } from "../bar/bar.model"; export declare class CardItem { id: string; name: string; className: string; show: boolean; static idGenerator: number; constructor(res?: any); } export declare class AlloyLogo { imageUrl: string; alt: string; width: string; height: string; constructor(res?: any); } export declare class AlloyCard { id: string; className: string; body: CardItem; fields: any; link: string; static idGenerator: number; constructor(res?: any); } export declare class AlloyCardAction extends AlloyCard { action: Bar; type: string; constructor(res?: any); } export declare class AlloyCardIcon extends AlloyCard { icon: AlloyIcon; iconClass: string; textClass: string; constructor(res?: any); } export declare class AlloyCardIconAction extends AlloyCardAction { icon: AlloyIcon; iconClass: string; textClass: string; constructor(res?: any); } export declare class AlloyCardImage extends AlloyCard { image: AlloyLogo; imageClass: string; textClass: string; constructor(res?: any); } export declare class AlloyCardImageAction extends AlloyCardAction { image: AlloyLogo; imageClass: string; textClass: string; constructor(res?: any); }