import StraightFlush from "./StraightFlush";
import Quads from "./Quads";
import FullHouse from "./FullHouse";
import Flush from "./Flush";
import Straight from "./Straight";
import TreeOfAKind from "./TreeOfAKind";
import TwoPairs from "./TwoPairs";
import OnePair from "./OnePair";
import HighCards from "./HighCards";
export { StraightFlush, Quads, FullHouse, Flush, Straight, TreeOfAKind, TwoPairs, OnePair, HighCards };
export declare const type: {
    ROYAL_FLUSH: string;
    STRAIGHT_FLUSH: string;
    QUADS: string;
    FULL_HOUSE: string;
    FLUSH: string;
    STRAIGHT: string;
    TREE_OF_A_KIND: string;
    TWO_PAIRS: string;
    ONE_PAIR: string;
    HIGH_CARDS: string;
};
export declare const name: {
    [key: string]: string;
};
