import { FC } from "react";
import { CustomFace, FACES, POSITIONS } from "../../types";
export interface Props {
    pointsCount: number;
    face: FACES | CustomFace;
    position?: POSITIONS;
}
declare const DiceFace: FC<Props>;
export default DiceFace;
