import React from 'react'; interface Labels { info?: string; warning?: string; error?: string; ok?: string; } export interface MdInfoTagProps extends React.ButtonHTMLAttributes { theme?: 'primary' | 'secondary' | 'warning' | 'danger' | 'success'; keepOpen?: boolean; label?: string; labels?: Labels; icon?: 'none' | 'info' | 'warning' | 'error' | 'check' | 'custom'; customIcon?: React.ReactNode; outline?: boolean; onClick?(_e: React.MouseEvent): void; } export declare const MdInfoTag: React.FC; export default MdInfoTag;