/**
* All Suits should implement this interface.
*/
declare abstractclassAbstractSuit {
abstractgetId(): string;
/**
* In customised classes, h d c s j should be avoided.
*/abstractgetShortName(): string;
abstractgetIcon(): string;
}
export default AbstractSuit;