import Suit from './Suit';
declare class Spade extends Suit {
    private _id;
    getId(): string;
    getShortName(): string;
    getIcon(): string;
}
export default Spade;
