export interface CharacterCountProps {
    /**
     * The max length of characters allowed
     */
    maxLength: number;
    /**
     * The input string
     */
    input: string;
}
