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