import { IconType } from '../../common/types';
import { SuggestionSection } from '../other';
export declare class ModalCard {
    label: string;
    path?: string;
    searchPlaceHolder?: string;
    type: string;
    dataModal: any;
    desc: string;
    value?: number;
    customModalTitle?: number;
    warningModalMessage?: number;
    subType?: string;
    openIcon?: IconType;
    statusIcon?: IconType;
    order?: number;
    url?: string;
    suggestionSection?: SuggestionSection;
    isLoading?: boolean;
    constructor(message: any);
}
