import { FC } from "react";
import { POSITIONS } from "../../types";
export interface Props {
    fontSize?: string;
    position?: POSITIONS;
    text?: string;
    textColor?: string;
    bgColor?: string;
}
declare const CubeSide: FC<Props>;
export default CubeSide;
