import { BaseUIComponent, UIModel, ComponentDescriptor, ContainerProperties, AttributesMap } from '@ngx-dynamic-components/core'; export declare class CardUIComponent extends BaseUIComponent { get header(): UIModel; get content(): UIModel; get footer(): UIModel; private getChildByIndex; } export declare class CardProperties extends ContainerProperties { img?: string; title?: string; subTitle?: string; children?: []; } interface CardUIComponentConstrutor { new (): CardUIComponent; } interface CardPropertiesConstrutor { new (): CardProperties; } export declare const cardDescriptor: ComponentDescriptor; export {};