///
export interface ISkillCardProps {
/**
* Class name
*/
className?: string;
/**
* Tab Index
**/
tabIndex?: number;
/**
* Title to display in the first line of the header
*/
headerTitle?: string;
/**
* Subtitle to display in the second line of the header
*/
headerSubtitle?: string;
noSkillsAddedCardClick?: () => void;
/**
* Text to display in the footer
*/
footerText?: string;
/**
* Button text for the button in the footer
*/
footerButtonText?: string;
/**
* Footer button event handler
*/
footerButtonOnClick?: (event: React.MouseEvent) => void;
}