import React from "react";
type DigitType = {
    char: string;
    color: string;
    height: number;
    skew: boolean;
};
export declare const Digit: ({ char, color, height, skew, }: DigitType) => React.JSX.Element;
export {};
