import { FormActionsModel } from './form-actions.model'; export declare class CardFormConfigModel { /** * Form button actions */ FormActions?: FormActionsModel; /** * Card title icon */ Icon: string; /** * Card title */ Title: string; /** * Card subtitle */ Subtitle: string; constructor(opts: CardFormConfigModel); }