export declare class Suit {
    private _name;
    get name(): string;
    constructor(name: string);
}
